Update to 2021-07-15 12:00

master
Daniel Berteaud 3 years ago
parent afd2cfc5e4
commit 803c63835b
  1. 2
      roles/matrix_synapse/defaults/main.yml
  2. 4
      roles/metabase/defaults/main.yml
  3. 4
      roles/seafile/defaults/main.yml
  4. 27
      roles/zfs/tasks/install_Debian.yml

@ -1,7 +1,7 @@
---
# Synapse version to deploy
synapse_version: 1.37.0
synapse_version: 1.38.0
# Should ansible handle Synapse upgrades ? If false, only initial install will be done
synapse_manage_upgrade: True

@ -1,11 +1,11 @@
---
# Version to deploy
metabase_version: 0.40.0
metabase_version: 0.40.1
# URL to fetch the jar
metabase_jar_url: https://downloads.metabase.com/v{{ metabase_version }}/metabase.jar
# Expected sha1 of the jar
metabase_jar_sha1: e6a0068b3ae39cada0d6f77b4bc94a02bda89bbb
metabase_jar_sha1: e40a7fc2a5eeeb63df6a90d447139a6bb076d6f5
# Should ansible handle upgrades ? If set to false, only the initial install (and the config) will be handled
metabase_manage_upgrade: True

@ -11,11 +11,11 @@
# MaxUsers = "9"
# Mode = "subscription"
# etc...
seafile_version: "{{ seafile_license is defined | ternary('8.0.5','8.0.5') }}"
seafile_version: "{{ seafile_license is defined | ternary('8.0.5','8.0.6') }}"
# 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_sha1: cb28c1cde3f3794f11776f56bc97544cab65c5dc
seafile_archive_sha1: 97f5d29a611111f5b53c8b149b7cead0601b999a
seafile_root_dir: /opt/seafile
seafile_data_dir: "{{ seafile_root_dir }}/data"

@ -1,19 +1,26 @@
---
- name: Install dependencies
apt:
name:
- libcapture-tiny-perl
- libconfig-inifiles-perl
- pv
- lzop
- mbuffer
- when: ansible_distribution_major_version is version('11', '<')
block:
- name: Install dependencies
apt:
name:
- libcapture-tiny-perl
- libconfig-inifiles-perl
- pv
- lzop
- mbuffer
- name: Install sanoid
apt: deb=http://ftp.fr.debian.org/debian/pool/main/s/sanoid/sanoid_2.0.3-4_all.deb
tags: zfs
- name: Install sanoid
apt: deb=http://ftp.fr.debian.org/debian/pool/main/s/sanoid/sanoid_2.0.3-4_all.deb
- when: ansible_distribution_major_version is version('11', '>=')
apt: name=sanoid
tags: zfs
- name: Setup sanoid service and timer
template: src=sanoid.{{ item }}.j2 dest=/etc/systemd/system/sanoid.{{ item }}
loop:

Loading…
Cancel
Save