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
8e30e379
Commit
8e30e379
authored
Aug 12, 2015
by
Brian Coca
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #11811 from amenonsen/fixme-range
FIXME in host range parsing
parents
624065f2
7d9689c1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
8 deletions
+7
-8
docsite/rst/intro_patterns.rst
+2
-2
lib/ansible/inventory/expand_hosts.py
+5
-6
No files found.
docsite/rst/intro_patterns.rst
View file @
8e30e379
...
...
@@ -72,9 +72,9 @@ As an advanced usage, you can also select the numbered server in a group::
webservers[0]
Or a
portion
of servers in a group::
Or a
range
of servers in a group::
webservers[0
-
25]
webservers[0
:
25]
Most people don't specify patterns as regular expressions, but you can. Just start the pattern with a '~'::
...
...
lib/ansible/inventory/expand_hosts.py
View file @
8e30e379
...
...
@@ -75,12 +75,11 @@ def expand_hostname_range(line = None):
# of hosts and then repeat until none left.
# - also add an optional third parameter which contains the step. (Default: 1)
# so range can be [01:10:2] -> 01 03 05 07 09
# FIXME: make this work for alphabetic sequences too.
(
head
,
nrange
,
tail
)
=
line
.
replace
(
'['
,
'|'
,
1
)
.
replace
(
']'
,
'|'
,
1
)
.
split
(
'|'
)
bounds
=
nrange
.
split
(
":"
)
if
len
(
bounds
)
!=
2
and
len
(
bounds
)
!=
3
:
raise
errors
.
AnsibleError
(
"host range
incorrectly specified
"
)
raise
errors
.
AnsibleError
(
"host range
must be begin:end or begin:end:step
"
)
beg
=
bounds
[
0
]
end
=
bounds
[
1
]
if
len
(
bounds
)
==
2
:
...
...
@@ -90,11 +89,11 @@ def expand_hostname_range(line = None):
if
not
beg
:
beg
=
"0"
if
not
end
:
raise
errors
.
AnsibleError
(
"host range
end value missing
"
)
raise
errors
.
AnsibleError
(
"host range
must specify end value
"
)
if
beg
[
0
]
==
'0'
and
len
(
beg
)
>
1
:
rlen
=
len
(
beg
)
# range length formatting hint
if
rlen
!=
len
(
end
):
raise
errors
.
AnsibleError
(
"host range
format incorrectly specified!
"
)
raise
errors
.
AnsibleError
(
"host range
must specify equal-length begin and end formats
"
)
fill
=
lambda
_
:
str
(
_
)
.
zfill
(
rlen
)
# range sequence
else
:
fill
=
str
...
...
@@ -103,8 +102,8 @@ def expand_hostname_range(line = None):
i_beg
=
string
.
ascii_letters
.
index
(
beg
)
i_end
=
string
.
ascii_letters
.
index
(
end
)
if
i_beg
>
i_end
:
raise
errors
.
AnsibleError
(
"host range
format incorrectly specified!
"
)
seq
=
string
.
ascii_letters
[
i_beg
:
i_end
+
1
]
raise
errors
.
AnsibleError
(
"host range
must have begin <= end
"
)
seq
=
list
(
string
.
ascii_letters
[
i_beg
:
i_end
+
1
:
int
(
step
)])
except
ValueError
:
# not an alpha range
seq
=
range
(
int
(
beg
),
int
(
end
)
+
1
,
int
(
step
))
...
...
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