Release 22.12 #165

Merged
jlecour merged 76 commits from unstable into stable 2022-12-14 12:02:46 +01:00
3 changed files with 9 additions and 5 deletions
Showing only changes of commit 101c282846 - Show all commits

View file

@ -53,6 +53,7 @@ The **patch** part changes is incremented if multiple releases happen the same m
* evolinux-user: Fix sudoers privilege for check php\_fpm80
* nagios-nrpe: Fix check opendkim for recent change in listening port
* varnish: fix missing state, that blocked the task
* proftpd: Fix format of public key files controlled by ansible
### Removed

View file

@ -62,13 +62,13 @@
- proftpd
- name: Allow keys for SFTP account
blockinfile:
dest: "/etc/proftpd/sftp.authorized_keys/{{ item.name }}"
state: present
block: "{{ item.sshkeys }}"
create: yes
template:
dest: "/etc/proftpd/sftp.authorized_keys/{{ _proftpd_account.name }}"
src: authorized_keys.j2
mode: 0600
loop: "{{ proftpd_accounts_final }}"
loop_control:
loop_var: _proftpd_account
notify: restart proftpd
when:
- proftpd_sftp_enable | bool

View file

@ -0,0 +1,3 @@
{%- for key in _proftpd_account.sshkeys %}
{{ key }}
{%- endfor %}