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.
This commit is contained in:
Alan Orth 2021-09-13 10:18:40 +03:00
parent 83fea62b0f
commit 6ee389eda5
Signed by: alanorth
GPG Key ID: 0FB860CC9C45B1B9
1 changed files with 4 additions and 4 deletions

View File

@ -4,11 +4,11 @@
- 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
- 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