mono-infrastructure/ansible/playbooks/init-rocky-bugzilla.yml

61 lines
1.3 KiB
YAML
Raw Normal View History

2021-01-10 00:49:05 +00:00
---
2021-04-24 08:15:27 +00:00
# Installs Bugzilla
- name: Configure Bugzilla
2021-04-02 02:49:59 +00:00
hosts: "bugtracker"
2021-01-10 00:49:05 +00:00
become: true
2021-04-03 00:30:42 +00:00
vars_files:
- vars/common.yml
- vars/vaults/encpass.yml
- vars/vaults/mantis.yml
2021-04-24 08:15:27 +00:00
- vars/bugzilla.yml
2021-01-10 00:49:05 +00:00
2021-01-24 19:07:32 +00:00
handlers:
2021-01-10 00:49:05 +00:00
- import_tasks: handlers/main.yml
pre_tasks:
- name: Check if ansible cannot be run here
stat:
path: /etc/no-ansible
register: no_ansible
- name: Verify if we can run ansible
assert:
that:
- "not no_ansible.stat.exists"
success_msg: "We are not able to run on this node"
fail_msg: "/etc/no-ansible exists - skipping run on this node"
2021-04-03 00:30:42 +00:00
roles:
- role: rockylinux.ipagetcert
state: present
2021-01-10 00:49:05 +00:00
tasks:
- name: Deploy Mantis
2021-04-24 08:15:27 +00:00
import_tasks: tasks/bugzilla.yml
2021-01-10 00:49:05 +00:00
post_tasks:
2021-04-03 00:30:42 +00:00
- name: Open firewalld ports
ansible.posix.firewalld:
service: "{{ item }}"
permanent: true
immediate: true
state: enabled
with_items:
- http
- https
- name: Ensure httpd is enabled and running
service:
name: httpd
enabled: true
state: started
2021-01-10 00:49:05 +00:00
- name: Touching run file that ansible has ran here
file:
path: /var/log/ansible.run
state: touch
mode: '0644'
owner: root
group: root
...