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
42767b30
Commit
42767b30
authored
Feb 28, 2012
by
Michael DeHaan
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix output on failed hosts
parent
b9b02405
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
29 additions
and
12 deletions
+29
-12
bin/ans-command
+29
-12
No files found.
bin/ans-command
View file @
42767b30
#!/usr/bin/python -tt
#skvidal, (c) Red Hat, Inc 2012
# skvidal, (c) Red Hat, Inc 2012
# (c) 2012, Michael DeHaan <michael.dehaan@gmail.com>
# This file is part of Ansible
#
...
...
@@ -17,8 +19,7 @@
# along with Ansible. If not, see <http://www.gnu.org/licenses/>.
#
#todo
# add 'execution time' option output to the output
# TODO: add 'execution time' option output to the output
import
sys
import
os
...
...
@@ -30,6 +31,9 @@ from ansible.scripts import base_ans_parser, error_print
def
main
(
args
):
# ==================================
# parse options
parser
=
base_ans_parser
()
parser
.
usage
=
"ans-command [options] command-to-run"
...
...
@@ -37,15 +41,19 @@ def main(args):
help
=
"output results on one line to make grepping easier, however will
\
not remove newlines from command output"
)
parser
.
add_option
(
'-o'
,
'--output-dir'
,
dest
=
'output_dest'
,
default
=
None
,
help
=
"
output each host's results to a file in a dir named for the
host"
)
help
=
"
if specified, a directory name to save output to, one file per
host"
)
options
,
args
=
parser
.
parse_args
(
args
)
# TODO: move into lib/ansible/scripts.py
# get user's password if not supplied
# TODO: move into lib/ansible/scripts.py (?)
sshpass
=
None
if
options
.
askpass
:
sshpass
=
getpass
.
getpass
(
prompt
=
"SSH password: "
)
# if specifying output destination (aka tree output saves), create the
# directory to output to
if
options
.
output_dest
:
if
options
.
output_dest
[
0
]
!=
'/'
:
options
.
output_dest
=
os
.
path
.
realpath
(
os
.
path
.
expanduser
(
options
.
output_dest
))
...
...
@@ -55,17 +63,19 @@ def main(args):
except
(
IOError
,
OSError
),
e
:
print
>>
sys
.
stderr
,
"Could not make dir
%
s:
%
s"
%
(
options
.
output_dest
,
e
)
sys
.
exit
(
1
)
if
not
os
.
access
(
options
.
output_dest
,
os
.
W_OK
):
print
>>
sys
.
stderr
,
"Cannot write to path
%
s"
%
options
.
output_dest
sys
.
exit
(
1
)
# if no arguments are specified, error out
if
len
(
args
)
==
0
:
print
>>
sys
.
stderr
,
"Missing argument. What should be executed?"
sys
.
exit
(
1
)
# make the actual ansible API call
mycmd
=
' '
.
join
(
args
)
runner
=
ansible
.
runner
.
Runner
(
module_name
=
'command'
,
module_path
=
options
.
module_path
,
...
...
@@ -77,9 +87,10 @@ def main(args):
pattern
=
options
.
pattern
,
verbose
=
True
,
)
results
=
runner
.
run
()
# walk through results and summarize them neatly
for
hostname
in
sorted
(
results
[
'contacted'
]):
result
=
results
[
'contacted'
][
hostname
]
...
...
@@ -90,9 +101,10 @@ def main(args):
traceback
=
result
.
get
(
'traceback'
,
''
)
error
=
result
.
get
(
'error'
,
''
)
# detect and show failures, if any
if
rc
!=
0
or
failed
:
msg
=
'Error:
%
s: '
%
hostname
# too bad stdout/stderr is not interleaved :(
msg
=
"Error:
%
s:
\n
"
%
hostname
msg
+=
stdout
msg
+=
stderr
msg
+=
traceback
...
...
@@ -101,6 +113,8 @@ def main(args):
continue
if
options
.
one_line
:
# try to print everything on one line, but don't strip newlines
# if the command output happend to be too long
msg
=
"(stdout)
%
s"
%
stdout
if
stderr
.
rstrip
()
!=
''
:
msg
=
"(stdout)
%
s (stderr)
%
s"
%
(
stdout
,
stderr
)
...
...
@@ -108,6 +122,7 @@ def main(args):
hostname
,
rc
,
msg
)
else
:
# summarize response from command in multiple lines
buf
=
''
buf
+=
"
%
s | rc=
%
s >>
\n
"
%
(
hostname
,
rc
)
buf
+=
stdout
...
...
@@ -120,11 +135,13 @@ def main(args):
fd
.
write
(
buf
)
fd
.
close
()
# print errors for hosts we could not reach
if
results
[
'dark'
]:
print
''
error_print
(
'Hosts which could not be contacted or did not respond:'
)
failed_hosts
=
results
[
'dark'
]
.
keys
()
for
hostname
in
key
s
:
error_print
(
"
%
s:
%
s
"
%
(
hostname
,
results
[
'dark'
][
hostname
]))
for
hostname
in
failed_host
s
:
error_print
(
"
%
s:
\n
%
s
\n
"
%
(
hostname
,
results
[
'dark'
][
hostname
]))
print
''
...
...
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