mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-07-27 15:11:23 -07:00
Unquote urls in YAML - source_control (#5795)
This commit is contained in:
parent
013be6fa1c
commit
18d022d808
3 changed files with 10 additions and 10 deletions
|
@ -105,18 +105,18 @@ options:
|
|||
EXAMPLES = '''
|
||||
# Checkout subversion repository to specified folder.
|
||||
- subversion:
|
||||
repo: 'svn+ssh://an.example.org/path/to/repo'
|
||||
repo: svn+ssh://an.example.org/path/to/repo
|
||||
dest: /src/checkout
|
||||
|
||||
# Export subversion directory to folder
|
||||
- subversion:
|
||||
repo: 'svn+ssh://an.example.org/path/to/repo'
|
||||
repo: svn+ssh://an.example.org/path/to/repo
|
||||
dest: /src/export
|
||||
|
||||
# Example just get information about the repository whether or not it has
|
||||
# already been cloned locally.
|
||||
- subversion:
|
||||
repo: 'svn+ssh://an.example.org/path/to/repo'
|
||||
repo: svn+ssh://an.example.org/path/to/repo
|
||||
dest: /srv/checkout
|
||||
checkout: no
|
||||
update: no
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue