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
e9907e9c
Commit
e9907e9c
authored
Feb 26, 2013
by
Brian Coca
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
added random cow pick through ANSIBLE_COW_SELECTION env var
Signed-off-by: Brian Coca <bcoca@tablethotels.com>
parent
ee517ea5
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
14 additions
and
3 deletions
+14
-3
lib/ansible/callbacks.py
+14
-3
No files found.
lib/ansible/callbacks.py
View file @
e9907e9c
...
@@ -20,7 +20,7 @@ import sys
...
@@ -20,7 +20,7 @@ import sys
import
getpass
import
getpass
import
os
import
os
import
subprocess
import
subprocess
import
os.path
import
random
from
ansible.color
import
stringc
from
ansible.color
import
stringc
cowsay
=
None
cowsay
=
None
...
@@ -34,6 +34,13 @@ elif os.path.exists("/usr/local/bin/cowsay"):
...
@@ -34,6 +34,13 @@ elif os.path.exists("/usr/local/bin/cowsay"):
# BSD path for cowsay
# BSD path for cowsay
cowsay
=
"/usr/local/bin/cowsay"
cowsay
=
"/usr/local/bin/cowsay"
noncow
=
os
.
getenv
(
"ANSIBLE_COW_SELECTION"
,
None
)
if
cowsay
and
noncow
==
'random'
:
cmd
=
subprocess
.
Popen
([
cowsay
,
"-l"
],
stdout
=
subprocess
.
PIPE
,
stderr
=
subprocess
.
PIPE
)
(
out
,
err
)
=
cmd
.
communicate
()
cows
=
out
.
split
()
cows
.
append
(
False
)
noncow
=
random
.
choice
(
cows
)
# ****************************************************************************
# ****************************************************************************
# 1.1 DEV NOTES
# 1.1 DEV NOTES
...
@@ -132,8 +139,12 @@ def regular_generic_msg(hostname, result, oneline, caption):
...
@@ -132,8 +139,12 @@ def regular_generic_msg(hostname, result, oneline, caption):
def
banner
(
msg
):
def
banner
(
msg
):
if
cowsay
:
if
cowsay
:
cmd
=
subprocess
.
Popen
([
cowsay
,
"-W"
,
"60"
,
msg
],
runcmd
=
[
cowsay
,
"-W"
,
"60"
]
stdout
=
subprocess
.
PIPE
,
stderr
=
subprocess
.
PIPE
)
if
noncow
:
runcmd
.
append
(
'-f'
)
runcmd
.
append
(
noncow
)
runcmd
.
append
(
msg
)
cmd
=
subprocess
.
Popen
(
runcmd
,
stdout
=
subprocess
.
PIPE
,
stderr
=
subprocess
.
PIPE
)
(
out
,
err
)
=
cmd
.
communicate
()
(
out
,
err
)
=
cmd
.
communicate
()
return
"
%
s
\n
"
%
out
return
"
%
s
\n
"
%
out
else
:
else
:
...
...
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