summaryrefslogtreecommitdiff
path: root/source_control
diff options
context:
space:
mode:
authorToshio Kuratomi <toshio@fedoraproject.org>2015-01-29 18:21:21 -0800
committerToshio Kuratomi <toshio@fedoraproject.org>2015-01-29 18:21:21 -0800
commitceaaa36f16a4b603cf854184d135a9535c793ef0 (patch)
tree77529196a04bbe96c96f0a394d78a93651582631 /source_control
parent21126a4af33837f1f5dde8bd9cc17c565b7fbbf8 (diff)
downloadansible-modules-extras-ceaaa36f16a4b603cf854184d135a9535c793ef0.tar.gz
Reverse the default value of the bzr module force flags
Diffstat (limited to 'source_control')
-rw-r--r--source_control/bzr.py7
1 files changed, 4 insertions, 3 deletions
diff --git a/source_control/bzr.py b/source_control/bzr.py
index 996150a3..0d25a026 100644
--- a/source_control/bzr.py
+++ b/source_control/bzr.py
@@ -45,11 +45,12 @@ options:
bzr revno or revid.
force:
required: false
- default: "yes"
+ default: "no"
choices: [ 'yes', 'no' ]
description:
- If C(yes), any modified files in the working
- tree will be discarded.
+ tree will be discarded. Before 1.9 the default
+ value was "yes".
executable:
required: false
default: null
@@ -145,7 +146,7 @@ def main():
dest=dict(required=True),
name=dict(required=True, aliases=['parent']),
version=dict(default='head'),
- force=dict(default='yes', type='bool'),
+ force=dict(default='no', type='bool'),
executable=dict(default=None),
)
)