diff options
author | Kamil Páral <kparal@redhat.com> | 2017-08-09 13:21:22 +0200 |
---|---|---|
committer | Kamil Páral <kparal@redhat.com> | 2017-08-09 13:21:22 +0200 |
commit | 9a933e3bb52d391c21ffcce3cb7e9679af115bfb (patch) | |
tree | d9aecb7e26fb0eba3b4b322d90992429a646734c | |
parent | dcd69e0036b45252d11972c3f559f2848b024d3a (diff) | |
download | ansible-9a933e3bb52d391c21ffcce3cb7e9679af115bfb.tar.gz ansible-9a933e3bb52d391c21ffcce3cb7e9679af115bfb.tar.xz ansible-9a933e3bb52d391c21ffcce3cb7e9679af115bfb.zip |
make 'restart fedmsg-hub' handler not exclusive to bodhi
-rw-r--r-- | handlers/restart_services.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/handlers/restart_services.yml b/handlers/restart_services.yml index f5f3b4d20..eecf439bb 100644 --- a/handlers/restart_services.yml +++ b/handlers/restart_services.yml @@ -22,7 +22,7 @@ # Note that, we're cool with arbitrary restarts on bodhi-backend02, just # not bodhi-backend01 or bodhi-backend03. 01 and 03 is where the releng/mash # stuff happens and we # don't want to interrupt that. - when: inventory_hostname == 'bodhi-backend02.phx2.fedoraproject.org' + when: inventory_hostname not in ['bodhi-backend01.phx2.fedoraproject.org', 'bodhi-backend03.phx2.fedoraproject.org'] - name: restart fedmsg-irc command: /usr/local/bin/conditional-restart.sh fedmsg-irc fedmsg-irc |