From b8eb958251cbce992342d03d726386372419421b Mon Sep 17 00:00:00 2001 From: Randy Barlow Date: Thu, 8 Nov 2018 17:29:40 +0000 Subject: [PATCH] Use Python 3 in Bodhi's staging sync playbook. Signed-off-by: Randy Barlow --- playbooks/manual/staging-sync/bodhi.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/playbooks/manual/staging-sync/bodhi.yml b/playbooks/manual/staging-sync/bodhi.yml index 782bf22d97..fb39aa0d95 100644 --- a/playbooks/manual/staging-sync/bodhi.yml +++ b/playbooks/manual/staging-sync/bodhi.yml @@ -23,7 +23,7 @@ tasks: - command: oc -n bodhi scale dc/bodhi-web --replicas=0 -- name: bring staging services down (fedmsg-hub) +- name: bring staging services down (fedmsg-hub-3) hosts: bodhi-backend-stg user: root vars_files: @@ -32,7 +32,7 @@ - /srv/web/infra/ansible/vars/{{ ansible_distribution }}.yml tasks: - - service: name=fedmsg-hub state=stopped + - service: name=fedmsg-hub-3 state=stopped # Here's the meaty part in the middle - name: drop and re-create the staging db entirely @@ -82,7 +82,7 @@ tasks: - service: name=httpd state=started -- name: bring staging services up (fedmsg-hub) +- name: bring staging services up (fedmsg-hub-3) hosts: bodhi-backend-stg user: root vars_files: @@ -91,4 +91,4 @@ - /srv/web/infra/ansible/vars/{{ ansible_distribution }}.yml tasks: - - service: name=fedmsg-hub state=started + - service: name=fedmsg-hub-3 state=started