This website works better with JavaScript.
Home
Help
Sign In
LILiK
/
lilik_playbook
Watch
5
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Releases
0
Wiki
Activity
Browse Source
roles/nextcloud: version variable
- Update to 18.0.4 - Version defined as variable in defaults/mail.yaml
python3
Zolfa
5 years ago
parent
330b914acd
commit
3a6781a8f9
Signed by:
zolfa
GPG Key ID:
E1A43B038C4D6616
2 changed files
with
3 additions
and
2 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-0
roles/nextcloud/defaults/main.yaml
+2
-2
roles/nextcloud/tasks/main.yaml
+ 1
- 0
roles/nextcloud/defaults/main.yaml
View File
@ -1,4 +1,5 @@
---
nextcloud_version
:
'18.0.4'
server_fqdn
:
'{{ ansible_hostname }}.{{ domain }}'
ldap_server
:
'ldap1.dmz.{{ domain }}'
ldap_basedn
:
'dc={{ domain.replace(".", ",dc=") }}'
+ 2
- 2
roles/nextcloud/tasks/main.yaml
View File
@ -40,9 +40,9 @@
become_method
:
'su'
become_user
:
'postgres'
-
name
:
'download
latest
nextcloud'
-
name
:
'download nextcloud'
get_url:
url
:
'https://download.nextcloud.com/server/releases/nextcloud-
18.0.3
.tar.bz2'
url
:
'https://download.nextcloud.com/server/releases/nextcloud-
{{ nextcloud_version }}
.tar.bz2'
dest
:
'/opt/nextcloud.tar.bz2'
register
:
'new_download'
tags:
Write
Preview
Loading…
Cancel
Save