Compare commits

..

2 Commits

Author SHA1 Message Date
341a1bf11e
roles/php-fpm: Install php7.4-xml
The RSS feeds in the WordPress admin dashboard need this.
2021-09-13 10:19:33 +03:00
6ee389eda5
roles/php-fpm: Use concrete dependencies
The php-gd, php-mysql, etc packages are meta packages that just end
up installing the concrete ones for our specific version.
2021-09-13 10:18:40 +03:00

View File

@ -4,11 +4,12 @@
- name: Set php-fpm packages - name: Set php-fpm packages
set_fact: set_fact:
php_fpm_packages: php_fpm_packages:
- php-fpm - php7.4-fpm
# for WordPress # for WordPress
- php-mysql - php7.4-mysql
- php-gd - php7.4-gd
- php-curl - php7.4-curl
- php7.4-xml
- name: Install php-fpm and deps - name: Install php-fpm and deps
apt: name={{ php_fpm_packages }} state=present update_cache=yes apt: name={{ php_fpm_packages }} state=present update_cache=yes