Update to 2021-12-12 19:00

This commit is contained in:
Daniel Berteaud 2021-12-12 19:00:31 +01:00
parent f896fc9bd1
commit ed9559576e
6 changed files with 25 additions and 8 deletions

View File

@ -1,11 +1,11 @@
---
# Version to deploy
metabase_version: 0.41.3.1
metabase_version: 0.41.4
# URL to fetch the jar
metabase_jar_url: https://downloads.metabase.com/v{{ metabase_version }}/metabase.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
metabase_manage_upgrade: True

View File

@ -11,7 +11,7 @@
# MaxUsers = "9"
# Mode = "subscription"
# 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
seafile_archive_url: https://s3.eu-central-1.amazonaws.com/download.seadrive.org/seafile-server_{{ seafile_version }}_x86-64.tar.gz

Binary file not shown.

Binary file not shown.

View File

@ -9,8 +9,16 @@
loop:
- seafile.service
- seahub.service
- seafile-clean-db.timer
- seafile-gc.timer
tags: seafile
- 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
- name: Backup the databases

View File

@ -88,3 +88,12 @@
when: seafile_webdav == True
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