Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
J
jumpserver
Project
Project
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
ops
jumpserver
Commits
2fedeb98
Commit
2fedeb98
authored
Dec 12, 2018
by
ibuler
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[Update] 修改命令错误输出
parent
daadcedc
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
1 deletion
+7
-1
callback.py
apps/ops/ansible/callback.py
+7
-1
No files found.
apps/ops/ansible/callback.py
View file @
2fedeb98
...
@@ -178,7 +178,13 @@ class CommandResultCallback(AdHocResultCallback):
...
@@ -178,7 +178,13 @@ class CommandResultCallback(AdHocResultCallback):
def
v2_runner_on_failed
(
self
,
result
,
ignore_errors
=
False
):
def
v2_runner_on_failed
(
self
,
result
,
ignore_errors
=
False
):
self
.
results_summary
[
'success'
]
=
False
self
.
results_summary
[
'success'
]
=
False
self
.
gather_result
(
"failed"
,
result
)
self
.
gather_result
(
"failed"
,
result
)
msg
=
result
.
_result
.
get
(
"msg"
)
or
result
.
_result
.
get
(
"module_stdout"
)
msg
=
result
.
_result
.
get
(
"msg"
,
''
)
stderr
=
result
.
_result
.
get
(
"stderr"
)
if
stderr
:
msg
+=
'
\n
'
+
stderr
module_stdout
=
result
.
_result
.
get
(
"module_stdout"
)
if
module_stdout
:
msg
+=
'
\n
'
+
module_stdout
if
not
msg
:
if
not
msg
:
msg
=
json
.
dumps
(
result
.
_result
,
indent
=
4
)
msg
=
json
.
dumps
(
result
.
_result
,
indent
=
4
)
self
.
_display
.
display
(
"
%
s | FAILED! =>
\n
%
s"
%
(
self
.
_display
.
display
(
"
%
s | FAILED! =>
\n
%
s"
%
(
...
...
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