mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Make documentation of win_unzip work on python3 as well
This commit is contained in:
parent
11ddda60d0
commit
f159597914
1 changed files with 6 additions and 6 deletions
|
@ -72,9 +72,9 @@ options:
|
|||
author: Phil Schwartz
|
||||
'''
|
||||
|
||||
EXAMPLES = '''
|
||||
EXAMPLES = r'''
|
||||
# This unzips a library that was downloaded with win_get_url, and removes the file after extraction
|
||||
$ ansible -i hosts -m win_unzip -a "src=C:\\LibraryToUnzip.zip dest=C:\\Lib rm=true" all
|
||||
$ ansible -i hosts -m win_unzip -a "src=C:\LibraryToUnzip.zip dest=C:\Lib rm=true" all
|
||||
# Playbook example
|
||||
|
||||
# Simple unzip
|
||||
|
@ -102,12 +102,12 @@ $ ansible -i hosts -m win_unzip -a "src=C:\\LibraryToUnzip.zip dest=C:\\Lib rm=t
|
|||
- name: Grab PSCX msi
|
||||
win_get_url:
|
||||
url: 'http://download-codeplex.sec.s-msft.com/Download/Release?ProjectName=pscx&DownloadId=923562&FileTime=130585918034470000&Build=20959'
|
||||
dest: 'C:\\pscx.msi'
|
||||
dest: 'C:\pscx.msi'
|
||||
- name: Install PSCX
|
||||
win_msi:
|
||||
path: 'C:\\pscx.msi'
|
||||
path: 'C:\pscx.msi'
|
||||
- name: Unzip gz log
|
||||
win_unzip:
|
||||
src: "C:\\Logs\\application-error-logs.gz"
|
||||
dest: "C:\\ExtractedLogs\\application-error-logs"
|
||||
src: "C:\Logs\application-error-logs.gz"
|
||||
dest: "C:\ExtractedLogs\application-error-logs"
|
||||
'''
|
||||
|
|
Loading…
Reference in a new issue