66 lines
1.7 KiB
YAML
66 lines
1.7 KiB
YAML
- name: push packages out
|
|
hosts:
|
|
- fedmsg-hubs
|
|
- fedmsg-hubs-stg
|
|
|
|
- fedmsg-relays
|
|
- fedmsg-relays-stg
|
|
|
|
- fedmsg-ircs
|
|
- fedmsg-ircs-stg
|
|
|
|
- fedmsg-gateways
|
|
- fedmsg-gateways-stg
|
|
|
|
- moksha-hubs
|
|
- moksha-hubs-stg
|
|
|
|
- notifs-web
|
|
- notifs-web-stg
|
|
|
|
- datagrepper
|
|
- datagrepper-stg
|
|
|
|
user: root
|
|
vars_files:
|
|
- /srv/web/infra/ansible/vars/global.yml
|
|
- "/srv/private/ansible/vars.yml"
|
|
- /srv/web/infra/ansible/vars/{{ ansible_distribution }}.yml
|
|
vars:
|
|
testing: False
|
|
packages:
|
|
- fedmsg
|
|
- python2-fedmsg-meta-fedora-infrastructure
|
|
- python-moksha-hub
|
|
handlers:
|
|
- import_tasks: "{{ handlers_path }}/restart_services.yml"
|
|
|
|
tasks:
|
|
- name: clean all metadata {%if testing%}(with infrastructure-testing on){%endif%}
|
|
command: yum clean all {%if testing%} --enablerepo=infrastructure-tags-stg {%endif%}
|
|
check_mode: no
|
|
- name: yum update fedmsg packages from the main repo
|
|
yum: name={{item}} state=latest
|
|
when: not testing
|
|
with_items: "{{packages}}"
|
|
- name: yum update fedmsg packages from testing repo
|
|
yum: name={{item}} state=latest enablerepo=infrastructure-tags-stg
|
|
when: testing
|
|
with_items: "{{packages}}"
|
|
|
|
# Restart all the backend daemons
|
|
- include_tasks: ../restart-fedmsg-services.yml
|
|
|
|
# Also restart the frontend web services
|
|
- name: bounce apache
|
|
hosts: notifs-web:notifs-web-stg:datagrepper:datagrepper-stg
|
|
user: root
|
|
vars_files:
|
|
- /srv/web/infra/ansible/vars/global.yml
|
|
- "/srv/private/ansible/vars.yml"
|
|
- /srv/web/infra/ansible/vars/{{ ansible_distribution }}.yml
|
|
handlers:
|
|
- import_tasks: "{{ handlers_path }}/restart_services.yml"
|
|
|
|
tasks:
|
|
- service: name="httpd" state=restarted
|