From 341a1bf11e5556c2de3f26ef302decef61516629 Mon Sep 17 00:00:00 2001 From: Alan Orth Date: Mon, 13 Sep 2021 10:19:33 +0300 Subject: [PATCH] roles/php-fpm: Install php7.4-xml The RSS feeds in the WordPress admin dashboard need this. --- roles/php-fpm/tasks/Ubuntu_20.04.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/roles/php-fpm/tasks/Ubuntu_20.04.yml b/roles/php-fpm/tasks/Ubuntu_20.04.yml index 574f30c..aaf56a2 100644 --- a/roles/php-fpm/tasks/Ubuntu_20.04.yml +++ b/roles/php-fpm/tasks/Ubuntu_20.04.yml @@ -9,6 +9,7 @@ - php7.4-mysql - php7.4-gd - php7.4-curl + - php7.4-xml - name: Install php-fpm and deps apt: name={{ php_fpm_packages }} state=present update_cache=yes