ansible-roles/webapps/evoadmin-web/tasks/ftp.yml
David Prevot fafff25c20
All checks were successful
gitea/ansible-roles/pipeline/head This commit looks good
Add “when: not ansible_check_mode” to allow more --check
2022-12-02 17:40:43 +01:00

14 lines
254 B
YAML

---
- name: patch must be installed
apt:
name: patch
state: present
- name: Patch ProFTPd config file
patch:
remote_src: False
src: ftp/evolinux.conf.diff
dest: /etc/proftpd/conf.d/z-evolinux.conf
when: not ansible_check_mode