svn
Collection: builtin
Full Name: parallax.builtin.subversion
Aliases: ansible.builtin.subversion, subversion, svn
Synopsis
Manage svn
Parameters
| Name | Type | Required | Default | Description |
|---|---|---|---|---|
| repo | string | yes | The subversion URL to the repository | |
| dest | string | yes | Absolute path where the repository should be checked out | |
| revision | string | HEAD | Specific revision to checkout | |
| force | bool | false | If true, discards any modifications to the working copy | |
| username | string | Username parameter for authentication | ||
| password | string | Password parameter for authentication | ||
| executable | string | svn | Path to svn executable to use | |
| checkout | bool | true | If false, do not check out the repository if it does not exist locally | |
| update | bool | true | If false, do not retrieve new revisions from the origin repository | |
| export | bool | false | If true, do export instead of checkout/update | |
| switch | bool | true | If false, do not switch the checkout when the URL changes | |
| validate_certs | bool | false | If false, do not verify SSL certificates |
Example
- name: Example svn task
svn:
repo: <your_repo>
dest: <your_dest>