-
Notifications
You must be signed in to change notification settings - Fork 53
/
main.yml
56 lines (47 loc) · 1014 Bytes
/
main.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
---
# Change selinux status to permissive
disable_selinux: yes
islandora_extra_ubuntu_packages:
- wget
- curl
- htop
- tree
- zsh
- fish
- unzip
- build-essential
- vim
- python3-mysqldb
islandora_extra_centos_packages:
- wget
- curl
- tree
- zsh
- unzip
- vim
- make
- automake
- gcc
- gcc-c++
- kernel-devel
postgresql_user: postgres
mysql_users:
- name: "{{ drupal_db_user }}"
host: "%"
password: "{{ drupal_db_password }}"
priv: "{{ drupal_db_name }}.*:ALL"
# Used by both the webserver and crayfish role for CentOS.
php_enablerepo: "remi-php72"
php_packages_state: "latest"
# This is the PHP version installed
# Changing this requires you to build a new base box.
php_version: "8.1"
# Log4j
os_environment:
- key: LOG4J_FORMAT_MSG_NO_LOOKUPS
value: true
webserver_install_matomo: true
webserver_install_fits: true
post_install_chown_defaults: true
post_install_migrate_import_tagwise: false
post_install_migrate_import_fits_tags: false