mono-infrastructure/ansible/playbooks/tasks/mantis.yml

29 lines
507 B
YAML
Raw Normal View History

2021-01-10 00:49:05 +00:00
---
# 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