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
7b982949
Commit
7b982949
authored
Sep 04, 2014
by
Alexander Gubin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix for #8886. Correct state=absent for statements without name/alias.
parent
5a7cbdda
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
1 deletions
+3
-1
library/packaging/zypper_repository
+3
-1
No files found.
library/packaging/zypper_repository
View file @
7b982949
...
...
@@ -192,11 +192,13 @@ def main():
if
name
:
module
.
fail_json
(
msg
=
'Incompatible option:
\'
name
\'
. Do not use name when adding repo files'
)
else
:
if
not
name
:
if
not
name
and
state
==
"present"
:
module
.
fail_json
(
msg
=
'Name required when adding non-repo files:'
)
if
repo
and
repo
.
endswith
(
'.repo'
):
exists
=
repo_exists
(
module
,
url
=
repo
,
alias
=
name
)
elif
repo
:
exists
=
repo_exists
(
module
,
url
=
repo
)
else
:
exists
=
repo_exists
(
module
,
alias
=
name
)
...
...
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