Revisions
-
Greg Swallow revised this gist
May 6, 2019 . 1 changed file with 2 additions and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -24,4 +24,5 @@ debug: msg: I am an always-tagged task tags: - always - exclude-always -
gswallow revised this gist
May 6, 2019 . 1 changed file with 1 addition and 2 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -24,5 +24,4 @@ debug: msg: I am an always-tagged task tags: - always -
gswallow created this gist
May 6, 2019 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,28 @@ --- - hosts: localhost vars: ansible_connection: local tasks: - name: demo an untagged task debug: msg: I am an untagged task - name: demo a normal tagged task debug: msg: I am a tagged task tags: - normal - name: demo a never-tagged task debug: msg: I am a never-tagged task tags: - never - run-never - name: demo an always-tagged task debug: msg: I am an always-tagged task tags: - always - exclude-always