From b375b482f3982715b16c442618aaa647e0d191ae Mon Sep 17 00:00:00 2001 From: A Holt Date: Sun, 13 Jan 2019 03:46:37 -0500 Subject: [PATCH] Update main.yml --- roles/nextcloud/tasks/main.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/roles/nextcloud/tasks/main.yml b/roles/nextcloud/tasks/main.yml index c14eca54c..854c5015e 100644 --- a/roles/nextcloud/tasks/main.yml +++ b/roles/nextcloud/tasks/main.yml @@ -59,11 +59,13 @@ state: present when: is_debuntu -- name: 'Install php{{ php_version }}-mcrypt (debuntu prior to 2018) NOTE: php7.2 dropped mcrypt' +- name: 'Install php{{ php_version }}-mcrypt (debuntu prior to 2018) NOTE: php7.2 dropped mcrypt as this should no longer be nec' package: name: "php{{ php_version }}-mcrypt" state: present - when: is_debuntu and (is_raspbian_8 or is_raspbian_9 or is_debian_8 or is_debian_9 or is_ubuntu_16 or is_ubuntu_17) + when: is_debuntu and (is_debian_8 or is_debian_9 or is_ubuntu_16 or is_ubuntu_17) + # NOT NEC TO TEST FOR is_raspbian_8 OR is_raspbian_9 AS /opt/iiab/iiab/vars/.yml + # DEFINES THESE AS SUBSETS OF is_debian_8 OR is_debian_9 # we need to install the rpm in order to get the dependencies # but we only need to do this the first time