From 17847d05d0d189c4831311a33d8287d16b61648a Mon Sep 17 00:00:00 2001 From: A Holt Date: Mon, 29 Oct 2018 03:18:58 -0400 Subject: [PATCH] Update main.yml --- roles/nextcloud/tasks/main.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/roles/nextcloud/tasks/main.yml b/roles/nextcloud/tasks/main.yml index 8195f3b8a..ce5d5085c 100644 --- a/roles/nextcloud/tasks/main.yml +++ b/roles/nextcloud/tasks/main.yml @@ -13,16 +13,16 @@ # msg: "nextcloud_force_install: {{ nextcloud_force_install }}" -- name: Download latest Nextcloud software to /opt/iiab/download/{{ nextcloud_src_file }} +- name: Download {{ nextcloud_dl_url }}/{{ nextcloud_orig_src_file }} to {{ downloads_dir }}/{{ nextcloud_src_file }} get_url: url: "{{ nextcloud_dl_url }}/{{ nextcloud_orig_src_file }}" dest: "{{ downloads_dir }}/{{ nextcloud_src_file }}" - force: yes - #validate_certs: False # TEMPORARY ON/AFTER 2018-07-22 AS download.nextcloud.com CERT EXPIRED: https://github.com/iiab/iiab/issues/954 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 + #async: 1800 + #poll: 10 tags: - download