mirror of
https://github.com/iiab/iiab.git
synced 2025-03-09 15:40:17 +00:00
dupl when: 's fixed in nextcloud/tasks/main.yml
This commit is contained in:
parent
2f73f599c5
commit
f3812754ec
1 changed files with 2 additions and 4 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue