From 5d2d1ffed4031463eb84b36f1794bcd89fc1643c Mon Sep 17 00:00:00 2001 From: "James E. Blair" Date: Fri, 14 Sep 2018 09:17:36 -0600 Subject: [PATCH] Stub out zuul_reconfigure playbook This is going to require some work to port several puppet things to Ansible. To test the execution mechanism, let's just stub it out for now. Change-Id: Ief09ca30b19afffd106c98018cb23a9715fc9a69 --- playbooks/zuul_reconfigure.yaml | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/playbooks/zuul_reconfigure.yaml b/playbooks/zuul_reconfigure.yaml index 4c52e082f1..51d77b55e2 100644 --- a/playbooks/zuul_reconfigure.yaml +++ b/playbooks/zuul_reconfigure.yaml @@ -1,7 +1,10 @@ - hosts: 'zuul-scheduler:!disabled' any_errors_fatal: true tasks: - - name: Reconfigure the zuul scheduler - command: /usr/local/bin/zuul-scheduler full-reconfigure - become: true - become_user: root + - name: Say hello + debug: + msg: Hello world! + # - name: Reconfigure the zuul scheduler + # command: /usr/local/bin/zuul-scheduler full-reconfigure + # become: true + # become_user: root