Silence command warnings
Ansible gives users helpful warnings if they have a shell or command
invocation that seems similar to an existing ansible module. That's
great, but maybe not what we need in a CI system.
Change-Id: Ib0f901d9cdcfcbea14ea31f9f3142d31050b53c2
diff --git a/zuul/executor/server.py b/zuul/executor/server.py
index d0741bb..15fb002 100644
--- a/zuul/executor/server.py
+++ b/zuul/executor/server.py
@@ -843,6 +843,7 @@
if self.jobdir.roles_path:
config.write('roles_path = %s\n' %
':'.join(self.jobdir.roles_path))
+ config.write('command_warnings = False\n')
config.write('callback_plugins = %s\n'
% self.executor_server.callback_dir)
config.write('stdout_callback = zuul_stream\n')