Make sure export param for subversion module is checked as a boolean
Fixes #7548
This commit is contained in:
parent
ca734fde8b
commit
e85c7f848f
2 changed files with 5 additions and 7 deletions
|
@ -176,7 +176,7 @@ def main():
|
||||||
username=dict(required=False),
|
username=dict(required=False),
|
||||||
password=dict(required=False),
|
password=dict(required=False),
|
||||||
executable=dict(default=None),
|
executable=dict(default=None),
|
||||||
export=dict(default=False, required=False),
|
export=dict(default=False, required=False, type='bool'),
|
||||||
),
|
),
|
||||||
supports_check_mode=True
|
supports_check_mode=True
|
||||||
)
|
)
|
||||||
|
|
|
@ -94,12 +94,10 @@
|
||||||
subversion: repo={{ repo }} dest={{ checkout_dir }} export=True
|
subversion: repo={{ repo }} dest={{ checkout_dir }} export=True
|
||||||
register: subverted4
|
register: subverted4
|
||||||
|
|
||||||
# FIXME: this needs to be fixed in the code see GitHub 6079
|
- name: verify on a reclone things are marked unchanged
|
||||||
|
assert:
|
||||||
#- name: verify on a reclone things are marked unchanged
|
that:
|
||||||
# assert:
|
- "not subverted4.changed"
|
||||||
# that:
|
|
||||||
# - "not subverted.changed"
|
|
||||||
|
|
||||||
# TBA: test for additional options or URL variants welcome
|
# TBA: test for additional options or URL variants welcome
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue