proftpd: Add a warning if config file was overriden
gitea/ansible-roles/pipeline/head This commit looks good Details

This commit is contained in:
Ludovic Poujol 2022-09-13 16:31:03 +02:00
parent 9631476a06
commit cd46dd8320
4 changed files with 13 additions and 1 deletions

View File

@ -18,7 +18,7 @@ The **patch** part changes is incremented if multiple releases happen the same m
* webapps/nextcloud: Add compatibility with apache2, and apache2 mod_php.
* inspect-domains: Add role
* memcached: NRPE check for multi-instance setup
* proftpd: Add options to override configs
* proftpd: Add options to override configs (and add a warning if file was overriden)
* proftpd: Allow user auth with ssh keys
### Changed

View File

@ -1,5 +1,9 @@
# Evolix's specific configuration
{% if proftpd_ftp_override %}
# WARNING : **Probably** ansible managed
{% endif %}
<IfModule !mod_ident.c>
LoadModule mod_ident.c
</IfModule>

View File

@ -1,3 +1,7 @@
{% if proftpd_ftps_override %}
# WARNING : **Probably** ansible managed
{% endif %}
<IfModule !mod_tls.c>
LoadModule mod_tls.c
</IfModule>

View File

@ -1,3 +1,7 @@
{% if proftpd_sftp_override %}
# WARNING : **Probably** ansible managed
{% endif %}
<IfModule !mod_tls.c>
LoadModule mod_tls.c
</IfModule>