2015-10-06 18:10:59 +02:00
|
|
|
# Run `fasClient` on the hosts of interest for most of our users (ie: bastion
|
|
|
|
# for the aliases, fedorapeople, fedorahosted and pkgs.fp.o
|
|
|
|
#
|
|
|
|
|
|
|
|
- name: run fasClient -a to make email aliases on bastion
|
|
|
|
hosts: bastion01.phx2.fedoraproject.org:bastion02.phx2.fedoraproject.org
|
|
|
|
user: root
|
|
|
|
gather_facts: False
|
|
|
|
|
|
|
|
tasks:
|
|
|
|
- name: actually run fasClient -a
|
|
|
|
command: fasClient -a
|
|
|
|
when: inventory_hostname_short.startswith('bastion0')
|
2015-11-24 17:08:42 +00:00
|
|
|
ignore_errors: true
|
2015-10-06 18:10:59 +02:00
|
|
|
|
2017-04-11 18:01:34 +00:00
|
|
|
- name: run fasClient on people and pkgs first as these are the ones most people want updated
|
|
|
|
hosts: people02.fedoraproject.org:pkgs02.phx2.fedoraproject.org
|
2015-10-06 18:10:59 +02:00
|
|
|
user: root
|
|
|
|
gather_facts: False
|
|
|
|
|
|
|
|
tasks:
|
|
|
|
- name: actually run fasClient -i
|
|
|
|
command: fasClient -i
|
2015-11-24 17:08:42 +00:00
|
|
|
ignore_errors: true
|