fix 1900 failures of the following case issue: `name[casing]: All names should start with an uppercase letter.` Signed-off-by: Ryan Lerch <rlerch@redhat.com>
22 lines
642 B
YAML
22 lines
642 B
YAML
---
|
|
- name: Reload the frontend
|
|
hosts: pagure:pagure_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:
|
|
- debug: msg="Karate Chop!"
|
|
|
|
- name: Reload apache...
|
|
service: name="httpd" state=reloaded
|
|
|
|
post_tasks:
|
|
- name: Tell nagios to unshush w.r.t. apache
|
|
nagios: action=unsilence service=host host={{ inventory_hostname_short }}{{ env_suffix }}
|
|
delegate_to: noc01.iad2.fedoraproject.org
|
|
ignore_errors: true
|