ansible-roles/php/tasks/main_jessie.yml

88 lines
2.3 KiB
YAML
Raw Normal View History

---
2021-09-29 16:40:25 +02:00
- name: "Set variables (Debian 8)"
set_fact:
php_cli_defaults_ini_file: /etc/php5/cli/conf.d/z-evolinux-defaults.ini
php_cli_custom_ini_file: /etc/php5/cli/conf.d/zzz-evolinux-custom.ini
php_apache_defaults_ini_file: /etc/php5/apache2/conf.d/z-evolinux-defaults.ini
php_apache_custom_ini_file: /etc/php5/apache2/conf.d/zzz-evolinux-custom.ini
php_fpm_defaults_ini_file: /etc/php5/fpm/conf.d/z-evolinux-defaults.ini
php_fpm_custom_ini_file: /etc/php5/fpm/conf.d/zzz-evolinux-custom.ini
php_fpm_debian_default_pool_file: /etc/php5/fpm/pool.d/www.conf
php_fpm_default_pool_file: /etc/php5/fpm/pool.d/www-evolinux-defaults.conf
php_fpm_default_pool_custom_file: /etc/php5/fpm/pool.d/www-evolinux-zcustom.conf
php_fpm_default_pool_socket: /var/run/php/php5-fpm.sock
php_fpm_service_name: php5-fpm
# Packages
2021-09-29 16:40:25 +02:00
- name: "Install PHP packages (Debian 8)"
apt:
2019-12-31 15:25:10 +01:00
name:
- php5-cli
- php5-gd
- php5-imap
- php5-ldap
- php5-mcrypt
- "{{ php_modules_mysqlnd | bool | ternary('php5-mysqlnd','php5-mysql') }}"
- php5-pgsql
2020-06-04 11:39:51 +02:00
- php5-sqlite
2019-12-31 15:25:10 +01:00
- php-gettext
- php5-intl
- php5-curl
- php5-ssh2
- libphp-phpmailer
state: present
2021-09-29 16:40:25 +02:00
- name: "Install mod_php packages (Debian 8)"
apt:
2019-12-31 15:25:10 +01:00
name:
- libapache2-mod-php5
- php5
state: present
when: php_apache_enable | bool
2021-09-29 16:40:25 +02:00
- name: "Install PHP FPM packages (Debian 8)"
apt:
2019-12-31 15:25:10 +01:00
name:
- php5-fpm
- php5
state: present
when: php_fpm_enable | bool
# Configuration
2021-09-29 16:40:25 +02:00
- name: Enforce permissions on PHP directory (Debian 8)
file:
dest: /etc/php5
mode: "0755"
when: not ansible_check_mode
- include: config_cli.yml
2019-12-31 15:25:10 +01:00
2021-09-29 16:40:25 +02:00
- name: Enforce permissions on PHP cli directory (Debian 8)
file:
dest: /etc/php5/cli
mode: "0755"
when: not ansible_check_mode
- include: config_fpm.yml
when: php_fpm_enable | bool
2019-12-31 15:25:10 +01:00
2021-09-29 16:40:25 +02:00
- name: Enforce permissions on PHP fpm directory (Debian 8)
file:
dest: /etc/php5/fpm
mode: "0755"
when: php_fpm_enable | bool
when: not ansible_check_mode
- include: config_apache.yml
when: php_apache_enable | bool
2019-12-31 15:25:10 +01:00
2021-09-29 16:40:25 +02:00
- name: Enforce permissions on PHP apache2 directory (Debian 8)
file:
dest: /etc/php5/apache2
mode: "0755"
when: php_apache_enable | bool
when: not ansible_check_mode