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
8e88667f
Commit
8e88667f
authored
May 19, 2012
by
Michael DeHaan
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix hosts being in multiple groups, and duplicate host references in the same inventory file.
parent
7302b7bb
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
26 additions
and
2 deletions
+26
-2
lib/ansible/inventory_parser.py
+6
-0
test/TestInventory.py
+2
-2
test/complex_hosts
+18
-0
No files found.
lib/ansible/inventory_parser.py
View file @
8e88667f
...
@@ -37,6 +37,7 @@ class InventoryParser(object):
...
@@ -37,6 +37,7 @@ class InventoryParser(object):
fh
=
open
(
filename
)
fh
=
open
(
filename
)
self
.
lines
=
fh
.
readlines
()
self
.
lines
=
fh
.
readlines
()
self
.
groups
=
{}
self
.
groups
=
{}
self
.
hosts
=
{}
self
.
_parse
()
self
.
_parse
()
def
_parse
(
self
):
def
_parse
(
self
):
...
@@ -81,7 +82,12 @@ class InventoryParser(object):
...
@@ -81,7 +82,12 @@ class InventoryParser(object):
tokens2
=
hostname
.
split
(
":"
)
tokens2
=
hostname
.
split
(
":"
)
hostname
=
tokens2
[
0
]
hostname
=
tokens2
[
0
]
port
=
tokens2
[
1
]
port
=
tokens2
[
1
]
host
=
None
if
hostname
in
self
.
hosts
:
host
=
self
.
hosts
[
hostname
]
else
:
host
=
Host
(
name
=
hostname
,
port
=
port
)
host
=
Host
(
name
=
hostname
,
port
=
port
)
self
.
hosts
[
hostname
]
=
host
if
len
(
tokens
)
>
1
:
if
len
(
tokens
)
>
1
:
for
t
in
tokens
[
1
:]:
for
t
in
tokens
[
1
:]:
(
k
,
v
)
=
t
.
split
(
"="
)
(
k
,
v
)
=
t
.
split
(
"="
)
...
...
test/TestInventory.py
View file @
8e88667f
...
@@ -128,9 +128,9 @@ class TestInventory(unittest.TestCase):
...
@@ -128,9 +128,9 @@ class TestInventory(unittest.TestCase):
print
vars
print
vars
expected
=
dict
(
expected
=
dict
(
a
=
'1'
,
b
=
'2'
,
c
=
'3'
,
d
=
'100002'
,
a
=
'1'
,
b
=
'2'
,
c
=
'3'
,
d
=
'100002'
,
rga
=
'1'
,
rgb
=
'2'
,
rgc
=
'3'
,
inventory_hostname
=
'rtp_a'
,
inventory_hostname
=
'rtp_a'
,
group_names
=
[
'eastcoast'
,
'nc'
,
'rtp'
,
'us'
]
group_names
=
[
'eastcoast'
,
'nc'
,
'r
edundantgroup'
,
'redundantgroup2'
,
'redundantgroup3'
,
'r
tp'
,
'us'
]
)
)
print
vars
print
vars
print
expected
print
expected
...
...
test/complex_hosts
View file @
8e88667f
...
@@ -12,6 +12,24 @@ florida
...
@@ -12,6 +12,24 @@ florida
[us:children]
[us:children]
eastcoast
eastcoast
[redundantgroup]
rtp_a
[redundantgroup2]
rtp_a
[redundantgroup3:children]
rtp
[redundantgroup:vars]
rga=1
[redundantgroup2:vars]
rgb=2
[redundantgroup3:vars]
rgc=3
[nc:vars]
[nc:vars]
b=10000
b=10000
c=10001
c=10001
...
...
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