Merge "Run everything in secure mode while debugging" into feature/zuulv3
diff --git a/zuul/launcher/server.py b/zuul/launcher/server.py
index f2b04f4..50e3e57 100644
--- a/zuul/launcher/server.py
+++ b/zuul/launcher/server.py
@@ -911,5 +911,7 @@
         # TODOv3: get this from the job
         timeout = 60
 
+        # TODO(mordred) Action plugin python import is breaking - troubleshoot
+        # and set this back to secure=True
         return self.runAnsible(
-            cmd=cmd, timeout=timeout, secure=playbook.secure)
+            cmd=cmd, timeout=timeout, secure=True)