mirror of
https://github.com/rocky-linux/infrastructure
synced 2024-11-11 00:11:25 +00:00
29 lines
507 B
YAML
29 lines
507 B
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
|
|
vars:
|
|
mantis_pkg:
|
|
- php
|
|
- php-ldap
|
|
- httpd
|
|
- mod_ssl
|
|
- php-pgsql
|
|
- php-mbstring
|
|
- php-curl
|
|
- openldap
|
|
tags:
|
|
- packages
|