mirror of
				https://git.lapiole.org/dani/ansible-roles.git
				synced 2025-10-30 18:31:28 +01:00 
			
		
		
		
	Update to 2022-04-27 09:00
This commit is contained in:
		| @@ -119,3 +119,6 @@ seafile_site_title: 'Mon cloud privé' | |||||||
| # Enable ClamAV scanning of files | # Enable ClamAV scanning of files | ||||||
| # Only available if you run the PRO edition | # Only available if you run the PRO edition | ||||||
| seafile_scan_av: True | seafile_scan_av: True | ||||||
|  |  | ||||||
|  | # Use Go file server. It's still a bit buggy so default to False | ||||||
|  | seafile_use_go_fileserver: False | ||||||
|   | |||||||
| @@ -30,7 +30,7 @@ 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.1', '>') %} | {% if seafile_version is version('9.0.1', '>') %} | ||||||
| use_go_fileserver = true | use_go_fileserver = {{ seafile_use_go_fileserver | ternary('true', 'false') }} | ||||||
| {% endif %} | {% endif %} | ||||||
|  |  | ||||||
| {% if seafile_license is defined and seafile_scan_av == True %} | {% if seafile_license is defined and seafile_scan_av == True %} | ||||||
|   | |||||||
| @@ -14,6 +14,9 @@ ad_gpo_access_control: permissive | |||||||
| # If set to True, ansible will re join the host to the domain | # If set to True, ansible will re join the host to the domain | ||||||
| ad_force_join: False | 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 | # Set to false to disable dyndns update | ||||||
| ad_dyndns_update: True | ad_dyndns_update: True | ||||||
|  |  | ||||||
|   | |||||||
| @@ -97,5 +97,5 @@ | |||||||
| # so we need to restart it now, so users are available (for eg, ssh authorized_keys setup) | # so we need to restart it now, so users are available (for eg, ssh authorized_keys setup) | ||||||
| - name: Restart sssd if needed | - name: Restart sssd if needed | ||||||
|   service: name=sssd state=restarted |   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 |   tags: auth | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user
	 Daniel Berteaud
					Daniel Berteaud