proftpd: Add a warning if config file was overriden
gitea/ansible-roles/pipeline/head This commit looks good
Details
gitea/ansible-roles/pipeline/head This commit looks good
Details
parent
9631476a06
commit
cd46dd8320
|
@ -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
|
||||
|
|
|
@ -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>
|
||||
|
|
|
@ -1,3 +1,7 @@
|
|||
{% if proftpd_ftps_override %}
|
||||
# WARNING : **Probably** ansible managed
|
||||
{% endif %}
|
||||
|
||||
<IfModule !mod_tls.c>
|
||||
LoadModule mod_tls.c
|
||||
</IfModule>
|
||||
|
|
|
@ -1,3 +1,7 @@
|
|||
{% if proftpd_sftp_override %}
|
||||
# WARNING : **Probably** ansible managed
|
||||
{% endif %}
|
||||
|
||||
<IfModule !mod_tls.c>
|
||||
LoadModule mod_tls.c
|
||||
</IfModule>
|
||||
|
|
Loading…
Reference in New Issue