Merge pull request #1246 from jpmens/nocows
Not for cow lovers: optionally disable cowsay
This commit is contained in:
commit
26bbac3062
1 changed files with 2 additions and 0 deletions
|
@ -32,6 +32,8 @@ if os.path.exists("/usr/bin/cowsay"):
|
||||||
cowsay = "/usr/bin/cowsay"
|
cowsay = "/usr/bin/cowsay"
|
||||||
elif os.path.exists("/usr/games/cowsay"):
|
elif os.path.exists("/usr/games/cowsay"):
|
||||||
cowsay = "/usr/games/cowsay"
|
cowsay = "/usr/games/cowsay"
|
||||||
|
if os.getenv("ANSIBLE_NOCOWS") is not None:
|
||||||
|
cowsay = None
|
||||||
|
|
||||||
def call_callback_module(method_name, *args, **kwargs):
|
def call_callback_module(method_name, *args, **kwargs):
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue