1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

Change example syntax on subversion module

This commit is contained in:
Sam Doran 2016-10-13 09:41:12 -04:00 committed by Matt Clay
parent 8a1caba407
commit ad6999e2eb

View file

@ -104,14 +104,22 @@ options:
EXAMPLES = ''' EXAMPLES = '''
# Checkout subversion repository to specified folder. # Checkout subversion repository to specified folder.
- subversion: repo=svn+ssh://an.example.org/path/to/repo dest=/src/checkout - subversion:
repo: 'svn+ssh://an.example.org/path/to/repo'
dest: /src/checkout
# Export subversion directory to folder # Export subversion directory to folder
- subversion: repo=svn+ssh://an.example.org/path/to/repo dest=/src/export export=True - subversion:
repo: 'svn+ssh://an.example.org/path/to/repo'
dest: /src/export
# Example just get information about the repository whether or not it has # Example just get information about the repository whether or not it has
# already been cloned locally. # already been cloned locally.
- subversion: repo=svn+ssh://an.example.org/path/to/repo dest=/srv/checkout checkout=no update=no - subversion:
repo: 'svn+ssh://an.example.org/path/to/repo'
dest: /srv/checkout
checkout: no
update: no
''' '''
import re import re