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
c0c094c4
Commit
c0c094c4
authored
Jul 28, 2015
by
Brian Coca
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
now all --list options are working!
parent
884435a1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
18 additions
and
13 deletions
+18
-13
lib/ansible/cli/playbook.py
+18
-13
No files found.
lib/ansible/cli/playbook.py
View file @
c0c094c4
...
@@ -159,28 +159,33 @@ class PlaybookCLI(CLI):
...
@@ -159,28 +159,33 @@ class PlaybookCLI(CLI):
playname
=
'#'
+
str
(
i
)
playname
=
'#'
+
str
(
i
)
msg
=
"
\n
PLAY:
%
s"
%
(
playname
)
msg
=
"
\n
PLAY:
%
s"
%
(
playname
)
if
self
.
options
.
listtags
:
mytags
=
set
()
mytags
=
set
(
play
.
tags
)
if
self
.
options
.
listtags
and
play
.
tags
:
msg
+=
'
\n
tags: [
%
s]'
%
(
','
.
join
(
mytags
))
mytags
=
mytags
.
union
(
set
(
play
.
tags
))
msg
+=
'
\n
tags: [
%
s]'
%
(
','
.
join
(
mytags
))
if
self
.
options
.
listhosts
:
if
self
.
options
.
listhosts
:
playhosts
=
set
(
inventory
.
get_hosts
(
play
.
hosts
))
playhosts
=
set
(
inventory
.
get_hosts
(
play
.
hosts
))
msg
+=
"
\n
pattern:
%
s
\n
total hosts:
%
d
\n
hosts:"
%
(
play
.
hosts
,
len
(
playhosts
))
msg
+=
"
\n
pattern:
%
s
\n
total hosts:
%
d
\n
hosts:"
%
(
play
.
hosts
,
len
(
playhosts
))
for
host
in
playhosts
:
for
host
in
playhosts
:
msg
+=
"
\n
%
s"
%
host
msg
+=
"
\n
%
s"
%
host
self
.
display
.
display
(
msg
)
self
.
display
.
display
(
msg
)
if
self
.
options
.
listtags
or
self
.
options
.
listtasks
:
if
self
.
options
.
listtags
or
self
.
options
.
listtasks
:
j
=
1
taskmsg
=
' tasks:'
taskmsg
=
' tasks:'
for
block
in
play
.
compile
():
for
task
in
play
.
get_tasks
():
if
not
block
.
has_tasks
():
taskmsg
+=
"
\n
%
s"
%
task
continue
if
self
.
options
.
listtags
:
pass
j
=
1
#taskmsg += " %s" % ','.join(mytags.union(set(task.tags))) #FIXME: find out how to get task tags
for
task
in
block
.
block
:
j
=
j
+
1
taskmsg
+=
"
\n
%
s"
%
task
if
self
.
options
.
listtags
and
task
.
tags
:
taskmsg
+=
"
\n
tags: [
%
s]"
%
','
.
join
(
mytags
.
union
(
set
(
task
.
tags
)))
j
=
j
+
1
self
.
display
.
display
(
taskmsg
)
self
.
display
.
display
(
taskmsg
)
i
=
i
+
1
i
=
i
+
1
...
...
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