mirror of
https://github.com/iiab/iiab.git
synced 2025-03-09 15:40:17 +00:00
Remove "| bool" 1.5yrs later, as Ansible 2.10 changed conditional_bare_variables default
This commit is contained in:
parent
2968a8a20e
commit
ca171fbc1c
158 changed files with 2072 additions and 2072 deletions
|
|
@ -4,7 +4,7 @@
|
|||
- name: add a repo def for ubuntu
|
||||
template: dest=/etc/apt/sources.list.d/
|
||||
src=owncloud.list
|
||||
when: is_ubuntu | bool
|
||||
when: is_ubuntu
|
||||
|
||||
- name: See if the owncloud startup page exists
|
||||
stat: path={{ owncloud_prefix }}/owncloud/index.php
|
||||
|
|
@ -40,7 +40,7 @@
|
|||
|
||||
- name: Get the owncloud software
|
||||
get_url: url={{ iiab_download_url }}/{{ owncloud_src_file }} dest={{ downloads_dir }}/{{ owncloud_src_file }}
|
||||
when: internet_available | bool
|
||||
when: internet_available
|
||||
async: 300
|
||||
poll: 5
|
||||
|
||||
|
|
@ -54,7 +54,7 @@
|
|||
- name: Copy it to permanent location /opt
|
||||
unarchive: src={{ downloads_dir }}/{{ owncloud_src_file }}
|
||||
dest={{ owncloud_prefix }}
|
||||
when: is_F18 | bool
|
||||
when: is_F18
|
||||
|
||||
- name: in Centos, the following config dir is symlink to /etc/owncloud
|
||||
file: path=/etc/owncloud
|
||||
|
|
@ -103,7 +103,7 @@
|
|||
# Enable owncloud by copying template to httpd config
|
||||
|
||||
- include_tasks: owncloud_enabled.yml
|
||||
when: owncloud_enabled | bool
|
||||
when: owncloud_enabled
|
||||
|
||||
- name: Add 'owncloud' variable values to {{ iiab_ini_file }}
|
||||
ini_file:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue