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
14134962
Commit
14134962
authored
Jul 31, 2015
by
Abhijit Menon-Sen
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Implement step for alphabetic ranges: [a:e:2] => a,c,e
parent
6d514e18
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
2 deletions
+1
-2
lib/ansible/inventory/expand_hosts.py
+1
-2
No files found.
lib/ansible/inventory/expand_hosts.py
View file @
14134962
...
...
@@ -75,7 +75,6 @@ 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
(
":"
)
...
...
@@ -104,7 +103,7 @@ def expand_hostname_range(line = None):
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
]
seq
=
[
string
.
ascii_letters
[
i
]
for
i
in
range
(
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