From f3812754ec519b18c0f04ba4d11e2618b32dd5c3 Mon Sep 17 00:00:00 2001 From: A Holt Date: Fri, 24 May 2019 20:19:26 -0400 Subject: [PATCH] dupl when: 's fixed in nextcloud/tasks/main.yml --- roles/nextcloud/tasks/main.yml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/roles/nextcloud/tasks/main.yml b/roles/nextcloud/tasks/main.yml index 5dc4276b9..2487b1e91 100644 --- a/roles/nextcloud/tasks/main.yml +++ b/roles/nextcloud/tasks/main.yml @@ -21,12 +21,11 @@ timeout: "{{ download_timeout }}" force: yes #validate_certs: False # TEMPORARY ON/AFTER 2018-07-22 AS download.nextcloud.com CERT EXPIRED: https://github.com/iiab/iiab/issues/954 - when: internet_available and nextcloud_force_install #async: 1800 #poll: 10 tags: - download - when: is_debian_9 or is_raspbian_9 + when: internet_available and nextcloud_force_install and (is_debian_9 or is_raspbian_9) - name: Download {{ nextcloud_dl_url }}/{{ nextcloud_orig_src_file }} to {{ downloads_dir }}/{{ nextcloud_src_file }} on newer OS's that have PHP 7.1+ get_url: @@ -35,12 +34,11 @@ timeout: "{{ download_timeout }}" force: yes #validate_certs: False # TEMPORARY ON/AFTER 2018-07-22 AS download.nextcloud.com CERT EXPIRED: https://github.com/iiab/iiab/issues/954 - when: internet_available and nextcloud_force_install #async: 1800 #poll: 10 tags: - download - when: not (is_debian_9 or is_raspbian_9) + when: internet_available and nextcloud_force_install and not (is_debian_9 or is_raspbian_9) # Ubuntu and Debian treat names differently - name: Install 3 php packages (debian)