windows/win_command: improve examples (#20465)

* windows/win_command: improve examples

* Improve description

* Improvements

* minor updates based on PR feedback
pull/28613/head
Fabio Alessandro Locati 7 years ago committed by Jordan Borean
parent 55fa4d54aa
commit c850bf15d0

@ -64,17 +64,12 @@ author:
''' '''
EXAMPLES = r''' EXAMPLES = r'''
# Example from Ansible Playbooks. - name: Save the result of 'whoami' in 'whoami_out'
- win_command: whoami win_command: whoami
register: whoami_out register: whoami_out
# Run the command only if the specified file does not exist. - name: Run command that only runs if folder exists and runs from a specific folder
- win_command: wbadmin -backupTarget:C:\backup\ creates=C:\backup\ win_command: wbadmin -backupTarget:C:\backup\
# You can also use the 'args' form to provide the options. This command
# will change the working directory to C:\somedir\\ and will only run when
# C:\backup\ doesn't exist.
- win_command: wbadmin -backupTarget:C:\backup\ creates=C:\backup\
args: args:
chdir: C:\somedir\ chdir: C:\somedir\
creates: C:\backup\ creates: C:\backup\

Loading…
Cancel
Save