mirror of
https://github.com/rocky-linux/infrastructure
synced 2024-11-13 09:11:24 +00:00
49 lines
1.1 KiB
YAML
49 lines
1.1 KiB
YAML
---
|
|
# Configure mantis
|
|
- name: Configure SELinux booleans
|
|
seboolean:
|
|
name: "{{ item }}"
|
|
persistent: true
|
|
state: true
|
|
with_items:
|
|
- httpd_can_network_connect_db
|
|
- httpd_can_network_connect
|
|
- httpd_can_sendmail
|
|
|
|
- name: Install necessary packages
|
|
yum:
|
|
name: "{{ mantis_pkg }}"
|
|
state: present
|
|
tags:
|
|
- packages
|
|
|
|
- name: Download the bugtracker
|
|
get_url:
|
|
url: "http://downloads.sourceforge.net/mantisbt/mantisbt-{{ mantis_version }}.tar.gz"
|
|
dest: "/tmp/mantisbt-{{ mantis_version }}.tar.gz"
|
|
checksum: "{{ mantis_checksum }}"
|
|
|
|
- name: Extract mantis
|
|
unarchive:
|
|
src: "/tmp/mantisbt-{{ mantis_version }}.tar.gz"
|
|
dest: "/var/www"
|
|
owner: apache
|
|
group: apache
|
|
remote_src: true
|
|
|
|
- name: Configure mantis
|
|
template:
|
|
src: "var/www/mantis/config/config_inc.php.j2"
|
|
dest: "/var/www/mantisbt-{{ mantis_version }}/config/config_inc.php"
|
|
owner: apache
|
|
group: apache
|
|
mode: '0640'
|
|
|
|
- name: Configure httpd
|
|
template:
|
|
src: "etc/httpd/conf.d/mantis.conf.j2"
|
|
dest: "/etc/httpd/conf.d/mantis.conf"
|
|
owner: root
|
|
group: root
|
|
mode: '0644'
|