381c1bad3c
With the migration to zuulv3, there is no more zuul-launcher. This has become zuul-executor, which has been moved into production. Servers have already been deleted, lets also remove it from puppet. Change-Id: Id2b53decdc63712460049f5fa9ed751e049d17ff Signed-off-by: Paul Belanger <pabelanger@redhat.com>
30 lines
672 B
YAML
30 lines
672 B
YAML
---
|
|
- hosts: 'zuul.openstack.org'
|
|
any_errors_fatal: true
|
|
tasks:
|
|
- name: Stop Zuul
|
|
service:
|
|
name: zuul
|
|
state: stopped
|
|
become: true
|
|
become_user: root
|
|
- name: Wait for (3h10m) to stop zuul
|
|
wait_for:
|
|
path: /var/run/zuul/zuul.pid
|
|
state: absent
|
|
timeout: 11400
|
|
|
|
- hosts: 'zm0*.openstack.org'
|
|
tasks:
|
|
- name: Hard stop zuul-merger
|
|
service:
|
|
name: zuul-merger
|
|
state: stopped
|
|
become: true
|
|
become_user: root
|
|
- name: Wait for (3h10m) to stop zuul-merger
|
|
wait_for:
|
|
path: /var/run/zuul-merger/zuul-merger.pid
|
|
state: absent
|
|
timeout: 11400
|