Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
A
ansible
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
OpenEdx
ansible
Commits
e85c7f84
Commit
e85c7f84
authored
May 27, 2014
by
James Cammarata
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Make sure export param for subversion module is checked as a boolean
Fixes #7548
parent
ca734fde
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
7 deletions
+5
-7
library/source_control/subversion
+1
-1
test/integration/roles/test_subversion/tasks/main.yml
+4
-6
No files found.
library/source_control/subversion
View file @
e85c7f84
...
@@ -176,7 +176,7 @@ def main():
...
@@ -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
)
)
...
...
test/integration/roles/test_subversion/tasks/main.yml
View file @
e85c7f84
...
@@ -94,12 +94,10 @@
...
@@ -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
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment