Update to 2022-04-27 09:00

This commit is contained in:
Daniel Berteaud 2022-04-27 09:00:08 +02:00
parent 1b8a2bc5ab
commit e083d9e49e
4 changed files with 8 additions and 2 deletions

View File

@ -119,3 +119,6 @@ seafile_site_title: 'Mon cloud privé'
# Enable ClamAV scanning of files
# Only available if you run the PRO edition
seafile_scan_av: True
# Use Go file server. It's still a bit buggy so default to False
seafile_use_go_fileserver: False

View File

@ -30,7 +30,7 @@ max_download_dir_size = {{ seafile_max_download_dir_size }}
{% endif %}
web_token_expire_time = 7200
{% if seafile_version is version('9.0.1', '>') %}
use_go_fileserver = true
use_go_fileserver = {{ seafile_use_go_fileserver | ternary('true', 'false') }}
{% endif %}
{% if seafile_license is defined and seafile_scan_av == True %}

View File

@ -14,6 +14,9 @@ ad_gpo_access_control: permissive
# If set to True, ansible will re join the host to the domain
ad_force_join: False
# If set to True, ansible will restart sssd, even if it wouldn't be needed otherwise
ad_restart_sssd: False
# Set to false to disable dyndns update
ad_dyndns_update: True

View File

@ -97,5 +97,5 @@
# so we need to restart it now, so users are available (for eg, ssh authorized_keys setup)
- name: Restart sssd if needed
service: name=sssd state=restarted
when: ad_join.changed or ad_trusted_join.results | selectattr('changed','equalto',True) | list | length > 0
when: ad_join.changed or ad_trusted_join.results | selectattr('changed','equalto',True) | list | length > 0 or ad_restart_sssd
tags: auth