1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

Merge pull request #1246 from jpmens/nocows

Not for cow lovers: optionally disable cowsay
This commit is contained in:
Michael DeHaan 2012-10-07 06:11:29 -07:00
commit 26bbac3062

View file

@ -32,6 +32,8 @@ if os.path.exists("/usr/bin/cowsay"):
cowsay = "/usr/bin/cowsay"
elif os.path.exists("/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):