From c942c078d9ce080e721663ae2c71e53a5fec02d8 Mon Sep 17 00:00:00 2001 From: A Holt Date: Fri, 6 Sep 2019 06:46:11 -0400 Subject: [PATCH] php-imagick for Nextcloud on Debian/Raspbian --- roles/nextcloud/tasks/install.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/roles/nextcloud/tasks/install.yml b/roles/nextcloud/tasks/install.yml index 697210feb..ed2b3ac51 100644 --- a/roles/nextcloud/tasks/install.yml +++ b/roles/nextcloud/tasks/install.yml @@ -69,10 +69,11 @@ #when: internet_available and nextcloud_force_install and not (is_debian_9 or is_raspbian_9 or is_ubuntu_16) # Ubuntu and Debian treat names differently -- name: Install 3 php packages (debian) +- name: Install 4 php packages (debian/raspian) package: name: - "libapache2-mod-php{{ php_version }}" + - "php{{ php_version }}-imagick" - "php{{ php_version }}-mbstring" - "php{{ php_version }}-zip" state: present @@ -84,8 +85,8 @@ name: - libapache2-mod-php - php-imagick - - php-zip - php-mbstring + - php-zip state: present when: is_ubuntu | bool