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
28fcdec2
Commit
28fcdec2
authored
Jun 20, 2014
by
Matt Martz
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Use new shared rax_to_dict and normalize the services key into something that makes sense
parent
88acb487
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
4 deletions
+2
-4
library/cloud/rax_identity
+2
-4
No files found.
library/cloud/rax_identity
View file @
28fcdec2
...
...
@@ -65,10 +65,8 @@ def cloud_identity(module, state, identity):
)
changed
=
False
for
key
,
value
in
vars
(
identity
)
.
iteritems
():
if
(
isinstance
(
value
,
NON_CALLABLES
)
and
not
key
.
startswith
(
'_'
)):
instance
[
key
]
=
value
instance
.
update
(
rax_to_dict
(
identity
))
instance
[
'services'
]
=
instance
.
get
(
'services'
,
{})
.
keys
()
if
state
==
'present'
:
if
not
identity
.
authenticated
:
...
...
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