Commit e85c7f84 by James Cammarata

Make sure export param for subversion module is checked as a boolean

Fixes #7548
parent ca734fde
......@@ -176,7 +176,7 @@ def main():
username=dict(required=False),
password=dict(required=False),
executable=dict(default=None),
export=dict(default=False, required=False),
export=dict(default=False, required=False, type='bool'),
),
supports_check_mode=True
)
......
......@@ -94,12 +94,10 @@
subversion: repo={{ repo }} dest={{ checkout_dir }} export=True
register: subverted4
# FIXME: this needs to be fixed in the code see GitHub 6079
#- name: verify on a reclone things are marked unchanged
# assert:
# that:
# - "not subverted.changed"
- name: verify on a reclone things are marked unchanged
assert:
that:
- "not subverted4.changed"
# TBA: test for additional options or URL variants welcome
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment