Update to 2021-11-19 10:00

master
Daniel Berteaud 3 years ago
parent 2d357a9254
commit d65672152c
  1. 1
      roles/glpi/templates/logrotate.conf.j2
  2. 4
      roles/navidrome/defaults/main.yml
  3. 2
      roles/seafile/templates/ccnet.conf.j2
  4. 3
      roles/seafile/templates/seafile.conf.j2
  5. 5
      roles/seafile/templates/seahub_settings.py.j2
  6. 2
      roles/seafile/vars/RedHat-8.yml

@ -3,4 +3,5 @@
rotate 90 rotate 90
compress compress
missingok missingok
su {{ glpi_php_user }} {{ glpi_php_user }}
} }

@ -1,11 +1,11 @@
--- ---
# Version to deploy # Version to deploy
nd_version: 0.46.0 nd_version: 0.47.0
# URL of the archive # URL of the archive
nd_archive_url: https://github.com/navidrome/navidrome/releases/download/v{{ nd_version }}/navidrome_{{ nd_version }}_Linux_x86_64.tar.gz nd_archive_url: https://github.com/navidrome/navidrome/releases/download/v{{ nd_version }}/navidrome_{{ nd_version }}_Linux_x86_64.tar.gz
# Expected sha1 of the archive # Expected sha1 of the archive
nd_archive_sha1: 5e851b3703d5a4c109b5073a7bcadb590d8049be nd_archive_sha1: 3d06456e26953931399d001f1d3c412f48ac9f34
# Should ansible handle upgrades, or only initial install ? # Should ansible handle upgrades, or only initial install ?
nd_manage_upgrade: True nd_manage_upgrade: True

@ -2,7 +2,9 @@
USER_NAME = {{ seafile_user }} USER_NAME = {{ seafile_user }}
ID = {{ seafile_ccnet_id }} ID = {{ seafile_ccnet_id }}
NAME = seafile NAME = seafile
{% if seafile_version is version('9.0.0', '<') %}
SERVICE_URL = {{ seafile_public_url }} SERVICE_URL = {{ seafile_public_url }}
{% endif %}
[Database] [Database]
ENGINE = mysql ENGINE = mysql

@ -29,6 +29,9 @@ max_upload_size = {{ seafile_max_upload_size }}
max_download_dir_size = {{ seafile_max_download_dir_size }} max_download_dir_size = {{ seafile_max_download_dir_size }}
{% endif %} {% endif %}
web_token_expire_time = 7200 web_token_expire_time = 7200
{% if seafile_version is version('9.0.0', '>=') %}
use_go_fileserver = true
{% endif %}
{% if seafile_license is defined and seafile_scan_av == True %} {% if seafile_license is defined and seafile_scan_av == True %}
[virus_scan] [virus_scan]

@ -1,4 +1,9 @@
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
{% if seafile_version is version('9.0.0', '>=') %}
SERVICE_URL = '{{ seafile_public_url }}'
{% endif %}
SECRET_KEY = "{{ seafile_seahub_secret }}" SECRET_KEY = "{{ seafile_seahub_secret }}"
DATABASES = { DATABASES = {

@ -41,3 +41,5 @@ seafile_rm_libs:
- liblber-2.4.so.2 - liblber-2.4.so.2
- libldap-2.4.so.2 - libldap-2.4.so.2
- libsasl2.so.3 - libsasl2.so.3
- libldap_r-2.4.so.2 # 9.0.0
- libcrypto.so.1.1 # 9.0.0

Loading…
Cancel
Save