summaryrefslogtreecommitdiffstats
path: root/lib/ansible/modules/subversion.py
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-19 00:55:41 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-19 00:55:41 +0000
commit634758cfc77dff535c5e9e17cc99c6ba19e965b1 (patch)
treebb1c1a6bbff7abf9ed2d0e3b888480e70f0f109a /lib/ansible/modules/subversion.py
parentAdding upstream version 2.14.13. (diff)
downloadansible-core-634758cfc77dff535c5e9e17cc99c6ba19e965b1.tar.xz
ansible-core-634758cfc77dff535c5e9e17cc99c6ba19e965b1.zip
Adding upstream version 2.16.5.upstream/2.16.5
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'lib/ansible/modules/subversion.py')
-rw-r--r--lib/ansible/modules/subversion.py18
1 files changed, 9 insertions, 9 deletions
diff --git a/lib/ansible/modules/subversion.py b/lib/ansible/modules/subversion.py
index 68aacfd..847431e 100644
--- a/lib/ansible/modules/subversion.py
+++ b/lib/ansible/modules/subversion.py
@@ -26,7 +26,7 @@ options:
dest:
description:
- Absolute path where the repository should be deployed.
- - The destination directory must be specified unless I(checkout=no), I(update=no), and I(export=no).
+ - The destination directory must be specified unless O(checkout=no), O(update=no), and O(export=no).
type: path
revision:
description:
@@ -36,8 +36,8 @@ options:
aliases: [ rev, version ]
force:
description:
- - If C(true), modified files will be discarded. If C(false), module will fail if it encounters modified files.
- Prior to 1.9 the default was C(true).
+ - If V(true), modified files will be discarded. If V(false), module will fail if it encounters modified files.
+ Prior to 1.9 the default was V(true).
type: bool
default: "no"
in_place:
@@ -65,32 +65,32 @@ options:
version_added: "1.4"
checkout:
description:
- - If C(false), do not check out the repository if it does not exist locally.
+ - If V(false), do not check out the repository if it does not exist locally.
type: bool
default: "yes"
version_added: "2.3"
update:
description:
- - If C(false), do not retrieve new revisions from the origin repository.
+ - If V(false), do not retrieve new revisions from the origin repository.
type: bool
default: "yes"
version_added: "2.3"
export:
description:
- - If C(true), do export instead of checkout/update.
+ - If V(true), do export instead of checkout/update.
type: bool
default: "no"
version_added: "1.6"
switch:
description:
- - If C(false), do not call svn switch before update.
+ - If V(false), do not call svn switch before update.
default: "yes"
version_added: "2.0"
type: bool
validate_certs:
description:
- - If C(false), passes the C(--trust-server-cert) flag to svn.
- - If C(true), does not pass the flag.
+ - If V(false), passes the C(--trust-server-cert) flag to svn.
+ - If V(true), does not pass the flag.
default: "no"
version_added: "2.11"
type: bool