Change examples syntax on shell module

This commit is contained in:
Sam Doran 2016-10-12 15:18:17 -04:00 committed by Matt Clay
parent 60a92eadd7
commit 079bf05ec3

View file

@ -83,7 +83,9 @@ EXAMPLES = '''
- shell: somescript.sh >> somelog.txt
# Change the working directory to somedir/ before executing the command.
- shell: somescript.sh >> somelog.txt chdir=somedir/
- shell: somescript.sh >> somelog.txt
args:
chdir: somedir/
# You can also use the 'args' form to provide the options. This command
# will change the working directory to somedir/ and will only run when