ansible-ops-management/vars/mantis.yml

38 lines
907 B
YAML
Raw Permalink Normal View History

2022-02-27 03:19:20 +00:00
---
# mantis vars
2024-01-25 19:18:59 +00:00
mantis_version: 2.26.0
mantis_checksum: "sha256:e278303e167c31e8f57fd52e266c15da71633718ae0d101101168847830e4f24"
2022-02-27 03:19:20 +00:00
mantis_pkg:
- php
- php-ldap
- httpd
- mod_ssl
- php-pgsql
- php-mbstring
- php-curl
- openldap
- php-json
2024-01-27 07:21:36 +00:00
- php-soap
2024-04-01 06:44:11 +00:00
mantis_selinux_booleans:
- httpd_can_network_connect_db
- httpd_can_network_connect
- httpd_can_sendmail
2022-02-27 03:19:20 +00:00
mantis_db_host: db.rockylinux.org
mantis_db_name: mantisdb
mantis_db_user: mantis
mantis_binder_user: "{{ rocky_ldap_bind_dn }}"
mantis_binder_pass: "{{ rocky_ldap_bind_pw }}"
# Vault
# mantis_db_pass: ThisIsNotThePassword!
ipa_getcert_requested_hostnames:
- name: "{{ ansible_fqdn }}"
owner: apache
key_location: "/etc/pki/tls/private/bugs.rockylinux.org.key"
cert_location: "/etc/pki/tls/certs/bugs.rockylinux.org.crt"
postcmd: "/bin/systemctl reload httpd"
cnames:
- "bugs.rockylinux.org"
...