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. 13
      roles/zfs/tasks/install_Debian.yml

@ -1,7 +1,7 @@
--- ---
# Synapse version to deploy # 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 # Should ansible handle Synapse upgrades ? If false, only initial install will be done
synapse_manage_upgrade: True synapse_manage_upgrade: True

@ -1,11 +1,11 @@
--- ---
# Version to deploy # Version to deploy
metabase_version: 0.40.0 metabase_version: 0.40.1
# 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_sha1: e6a0068b3ae39cada0d6f77b4bc94a02bda89bbb metabase_jar_sha1: e40a7fc2a5eeeb63df6a90d447139a6bb076d6f5
# 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,11 +11,11 @@
# MaxUsers = "9" # MaxUsers = "9"
# Mode = "subscription" # Mode = "subscription"
# etc... # 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 # 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
seafile_archive_sha1: cb28c1cde3f3794f11776f56bc97544cab65c5dc seafile_archive_sha1: 97f5d29a611111f5b53c8b149b7cead0601b999a
seafile_root_dir: /opt/seafile seafile_root_dir: /opt/seafile
seafile_data_dir: "{{ seafile_root_dir }}/data" seafile_data_dir: "{{ seafile_root_dir }}/data"

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

Loading…
Cancel
Save