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
42aecd33
Commit
42aecd33
authored
Jun 15, 2012
by
Daniel Hokka Zakrisson
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Allow exclusion of hosts/groups
parent
0fb59f0b
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
16 additions
and
9 deletions
+16
-9
lib/ansible/inventory/__init__.py
+16
-9
No files found.
lib/ansible/inventory/__init__.py
View file @
42aecd33
...
...
@@ -85,15 +85,22 @@ class Inventory(object):
patterns
=
pattern
.
replace
(
";"
,
":"
)
.
split
(
":"
)
groups
=
self
.
get_groups
()
for
group
in
groups
:
for
host
in
group
.
get_hosts
():
for
pat
in
patterns
:
if
group
.
name
==
pat
or
pat
==
'all'
or
self
.
_match
(
host
.
name
,
pat
):
#must test explicitly for None because [] means no hosts allowed
if
self
.
_restriction
==
None
:
hosts
[
host
.
name
]
=
host
elif
host
.
name
in
self
.
_restriction
:
hosts
[
host
.
name
]
=
host
for
pat
in
patterns
:
if
pat
.
startswith
(
"!"
):
pat
=
pat
[
1
:]
inverted
=
True
else
:
inverted
=
False
for
group
in
groups
:
for
host
in
group
.
get_hosts
():
if
group
.
name
==
pat
or
pat
==
'all'
or
self
.
_match
(
host
.
name
,
pat
):
#must test explicitly for None because [] means no hosts allowed
if
self
.
_restriction
==
None
or
host
.
name
in
self
.
_restriction
:
if
inverted
:
if
host
.
name
in
hosts
:
del
hosts
[
host
.
name
]
else
:
hosts
[
host
.
name
]
=
host
return
sorted
(
hosts
.
values
(),
key
=
lambda
x
:
x
.
name
)
def
get_groups
(
self
):
...
...
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