Native YAML - files (#3608)

pull/18777/head
Fabio Alessandro Locati 8 years ago committed by Matt Clay
parent 47442b7c22
commit d344d7863a

@ -63,13 +63,19 @@ notes:
EXAMPLES = ''' EXAMPLES = '''
# Compress directory /path/to/foo/ into /path/to/foo.tgz # Compress directory /path/to/foo/ into /path/to/foo.tgz
- archive: path=/path/to/foo dest=/path/to/foo.tgz - archive:
path: /path/to/foo
dest: /path/to/foo.tgz
# Compress regular file /path/to/foo into /path/to/foo.gz and remove it # Compress regular file /path/to/foo into /path/to/foo.gz and remove it
- archive: path=/path/to/foo remove=True - archive:
path: /path/to/foo
remove: True
# Create a zip archive of /path/to/foo # Create a zip archive of /path/to/foo
- archive: path=/path/to/foo format=zip - archive:
path: /path/to/foo
format: zip
# Create a bz2 archive of multiple files, rooted at /path # Create a bz2 archive of multiple files, rooted at /path
- archive: - archive:

@ -53,10 +53,14 @@ options:
EXAMPLES = """ EXAMPLES = """
- name: create temporary build directory - name: create temporary build directory
tempfile: state=directory suffix=build tempfile:
state: directory
suffix: build
- name: create temporary file - name: create temporary file
tempfile: state=file suffix=temp tempfile:
state: file
suffix: temp
""" """
RETURN = ''' RETURN = '''

Loading…
Cancel
Save