paulbsd-salt/states/vsftpd/init.sls

17 lines
315 B
Plaintext
Raw Normal View History

2020-07-10 00:58:55 +02:00
---
vsftpd-config:
file.managed:
- name: /etc/vsftpd.conf
2023-03-10 00:08:06 +01:00
- source: salt://vsftpd/templates/vsftpd.conf.j2
2020-07-10 00:58:55 +02:00
- user: root
- group: root
- mode: "0644"
2020-07-10 00:58:55 +02:00
- template: jinja
- watch_in:
- service: vsftpd-service
vsftpd-service:
service.running:
- name: vsftpd
2023-03-10 00:08:06 +01:00
- enable: true