mirror of
https://pagure.io/fedora-infra/ansible.git
synced 2026-03-20 03:57:02 +08:00
This will unify all the handlers to use first uppercase letter for ansible-lint to stop complaining. I went through all `notify:` occurrences and fixed them by running ``` set TEXT "text_to_replace"; set REPLACEMENT "replacement_text"; git grep -rlz "$TEXT" . | xargs -0 sed -i "s/$TEXT/$REPLACEMENT/g" ``` Then I went through all the changes and removed the ones that wasn't expected to be changed. Fixes https://pagure.io/fedora-infrastructure/issue/12391 Signed-off-by: Michal Konecny <mkonecny@redhat.com>
40 lines
930 B
YAML
40 lines
930 B
YAML
---
|
|
- name: Set url_suffix fact
|
|
set_fact:
|
|
url_suffix: ""
|
|
when: faf_web_on_root|bool
|
|
|
|
- name: Set url_suffix fact
|
|
set_fact:
|
|
url_suffix: "/faf"
|
|
when: not faf_web_on_root|bool
|
|
|
|
- name: Install faf-webui packages
|
|
ansible.builtin.package:
|
|
name: "{{ faf_web_packages }}"
|
|
state: present
|
|
|
|
- name: Import Celery tasks
|
|
import_tasks: celery.yml
|
|
when: faf_with_celery|bool
|
|
|
|
- name: Install faf web symboltransfer packages
|
|
ansible.builtin.package:
|
|
name: "{{ faf_web_symboltransfer_packages }}"
|
|
state: present
|
|
when: faf_with_symboltransfer|bool
|
|
|
|
- name: Provide /etc/faf/plugins/web.conf
|
|
ansible.builtin.template:
|
|
src: etc-faf-plugins-web.conf.j2
|
|
dest: /etc/faf/plugins/web.conf
|
|
notify:
|
|
- Restart httpd
|
|
|
|
- name: Put webfaf on root (/) if configured
|
|
ansible.builtin.template:
|
|
src: etc-httpd-conf.d-faf-web.conf.j2
|
|
dest: /etc/httpd/conf.d/faf-web.conf
|
|
notify:
|
|
- Restart httpd
|