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
ae9e38da
Commit
ae9e38da
authored
Sep 05, 2013
by
James Cammarata
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Change hostvars to a mutable mapping to more closely resemble a dict
Fixes #4030
parent
06090b5c
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
4 deletions
+11
-4
lib/ansible/runner/__init__.py
+11
-4
No files found.
lib/ansible/runner/__init__.py
View file @
ae9e38da
...
...
@@ -81,13 +81,20 @@ def _executor_hook(job_queue, result_queue, new_stdin):
except
:
traceback
.
print_exc
()
class
HostVars
(
collections
.
Mapping
):
class
HostVars
(
collections
.
M
utableM
apping
):
''' A special view of setup_cache that adds values from the inventory when needed. '''
def
__init__
(
self
,
setup_cache
,
inventory
):
self
.
setup_cache
=
setup_cache
self
.
inventory
=
inventory
self
.
lookup
=
{}
self
.
lookup
=
dict
()
self
.
update
(
setup_cache
)
def
__setitem__
(
self
,
host
,
value
):
self
.
lookup
[
host
]
=
value
def
__delitem__
(
self
,
host
):
del
self
.
lookup
[
host
]
def
__getitem__
(
self
,
host
):
if
not
host
in
self
.
lookup
:
...
...
@@ -97,10 +104,10 @@ class HostVars(collections.Mapping):
return
self
.
lookup
[
host
]
def
__iter__
(
self
):
return
(
host
.
name
for
host
in
self
.
inventory
.
get_group
(
'all'
)
.
hosts
)
return
iter
(
self
.
lookup
)
def
__len__
(
self
):
return
len
(
self
.
inventory
.
get_group
(
'all'
)
.
hosts
)
return
len
(
self
.
lookup
)
class
Runner
(
object
):
...
...
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