From b5c94790f27adf8349813df0f56cabdfc26c0e2c Mon Sep 17 00:00:00 2001
From: Clark Boylan <clark.boylan@gmail.com>
Date: Fri, 8 May 2020 11:43:38 -0700
Subject: [PATCH] Add a start.yaml to zuul-executor role

The zuul_restart.yaml playbook expects to be able to load start.yaml and
stop.yaml files from each of the zuul service roles. Before this change
the zuul-executor role was missing this file. Add it so that the
zuul_restart.yaml playbook can run successfully.

Change-Id: I6573129170cbe7ac36a7c6b6f7ea05b29eb1fe5b
---
 playbooks/roles/zuul-executor/tasks/start.yaml | 6 ++++++
 1 file changed, 6 insertions(+)
 create mode 100644 playbooks/roles/zuul-executor/tasks/start.yaml

diff --git a/playbooks/roles/zuul-executor/tasks/start.yaml b/playbooks/roles/zuul-executor/tasks/start.yaml
new file mode 100644
index 0000000000..a6519f0d51
--- /dev/null
+++ b/playbooks/roles/zuul-executor/tasks/start.yaml
@@ -0,0 +1,6 @@
+- name: Start Zuul Executor
+  service:
+    name: zuul-executor
+    state: started
+  become: true
+  become_user: root