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
e3b887f7
Commit
e3b887f7
authored
Mar 07, 2014
by
James Cammarata
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix range issue in inventory and add additional error checking
Fixes #6331
parent
d3cbde57
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
1 deletions
+6
-1
lib/ansible/inventory/__init__.py
+6
-1
No files found.
lib/ansible/inventory/__init__.py
View file @
e3b887f7
...
...
@@ -208,12 +208,14 @@ class Inventory(object):
"""
# The regex used to match on the range, which can be [x] or [x-y].
pattern_re
=
re
.
compile
(
"^(.*)
\
[([0-9]+)(?:(?:-)([0-9]+))?
\
](.*)$"
)
pattern_re
=
re
.
compile
(
"^(.*)
\
[([
-]?[
0-9]+)(?:(?:-)([0-9]+))?
\
](.*)$"
)
m
=
pattern_re
.
match
(
pattern
)
if
m
:
(
target
,
first
,
last
,
rest
)
=
m
.
groups
()
first
=
int
(
first
)
if
last
:
if
first
<
0
:
raise
errors
.
AnsibleError
(
"invalid range: negative indices cannot be used as the first item in a range"
)
last
=
int
(
last
)
else
:
last
=
first
...
...
@@ -245,10 +247,13 @@ class Inventory(object):
right
=
0
left
=
int
(
left
)
right
=
int
(
right
)
try
:
if
left
!=
right
:
return
hosts
[
left
:
right
]
else
:
return
[
hosts
[
left
]
]
except
IndexError
:
raise
errors
.
AnsibleError
(
"no hosts matching the pattern '
%
s' were found"
%
pat
)
def
_create_implicit_localhost
(
self
,
pattern
):
new_host
=
Host
(
pattern
)
...
...
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