mirror of
https://git.lapiole.org/dani/ansible-roles.git
synced 2025-04-23 21:53:21 +02:00
Update to 2021-12-12 19:00
This commit is contained in:
parent
f896fc9bd1
commit
ed9559576e
@ -1,11 +1,11 @@
|
|||||||
---
|
---
|
||||||
|
|
||||||
# Version to deploy
|
# Version to deploy
|
||||||
metabase_version: 0.41.3.1
|
metabase_version: 0.41.4
|
||||||
# URL to fetch the jar
|
# URL to fetch the jar
|
||||||
metabase_jar_url: https://downloads.metabase.com/v{{ metabase_version }}/metabase.jar
|
metabase_jar_url: https://downloads.metabase.com/v{{ metabase_version }}/metabase.jar
|
||||||
# Expected sha1 of the jar
|
# Expected sha1 of the jar
|
||||||
metabase_jar_sha256: 7fd0d52d38432016990847affcc0c02f8aac16603065edcfc8bde63acf9b1e03
|
metabase_jar_sha256: 8a14b5db169f2f66d8fcc0d9de597822e83a1f250c3cff57d4dddf384f2314f7
|
||||||
# Should ansible handle upgrades ? If set to false, only the initial install (and the config) will be handled
|
# Should ansible handle upgrades ? If set to false, only the initial install (and the config) will be handled
|
||||||
metabase_manage_upgrade: True
|
metabase_manage_upgrade: True
|
||||||
|
|
||||||
|
@ -11,7 +11,7 @@
|
|||||||
# MaxUsers = "9"
|
# MaxUsers = "9"
|
||||||
# Mode = "subscription"
|
# Mode = "subscription"
|
||||||
# etc...
|
# etc...
|
||||||
seafile_version: "{{ seafile_license is defined | ternary('8.0.14','9.0.2') }}"
|
seafile_version: "{{ seafile_license is defined | ternary('8.0.15','9.0.2') }}"
|
||||||
|
|
||||||
# Archive URL and sha1 are only used for the community version
|
# Archive URL and sha1 are only used for the community version
|
||||||
seafile_archive_url: https://s3.eu-central-1.amazonaws.com/download.seadrive.org/seafile-server_{{ seafile_version }}_x86-64.tar.gz
|
seafile_archive_url: https://s3.eu-central-1.amazonaws.com/download.seadrive.org/seafile-server_{{ seafile_version }}_x86-64.tar.gz
|
||||||
|
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:dd731df5358d2d85ac8813826edee53f2363e4a1374b99343cdc870d4563d1d5
|
|
||||||
size 124758132
|
|
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:cd7a93e14735f3bcc576a3c8f85937078e7805e50a613dff1c0f62ace5068112
|
||||||
|
size 124779753
|
@ -9,8 +9,16 @@
|
|||||||
loop:
|
loop:
|
||||||
- seafile.service
|
- seafile.service
|
||||||
- seahub.service
|
- seahub.service
|
||||||
- seafile-clean-db.timer
|
tags: seafile
|
||||||
- seafile-gc.timer
|
|
||||||
|
- name: Stop seafile-gc timer
|
||||||
|
systemd: name=seafile-gc.timer state=stopped
|
||||||
|
when: seafile_gc_timer.stat.exists
|
||||||
|
tags: seafile
|
||||||
|
|
||||||
|
- name: Stop seafile-clean-db timer
|
||||||
|
systemd: name=seafile-clean-db.timer state=stopped
|
||||||
|
when: seafile_clean_db_timer.stat.exists
|
||||||
tags: seafile
|
tags: seafile
|
||||||
|
|
||||||
- name: Backup the databases
|
- name: Backup the databases
|
||||||
|
@ -88,3 +88,12 @@
|
|||||||
when: seafile_webdav == True
|
when: seafile_webdav == True
|
||||||
tags: seafile
|
tags: seafile
|
||||||
|
|
||||||
|
- name: Check if seafile-gc timer exists
|
||||||
|
stat: path=/etc/systemd/system/seafile-gc.timer
|
||||||
|
register: seafile_gc_timer
|
||||||
|
tags: seafile
|
||||||
|
|
||||||
|
- name: Check if seafile-clean-db timer exists
|
||||||
|
stat: path=/etc/systemd/system/seafile-clean-db.timer
|
||||||
|
register: seafile_clean_db_timer
|
||||||
|
tags: seafile
|
||||||
|
Loading…
x
Reference in New Issue
Block a user