ansible-role-postfix/tasks/postgrey.yml
Adrien 2059989d8a
All checks were successful
continuous-integration/drone/push Build is passing
fix linter
2020-06-02 21:30:38 +02:00

13 lines
320 B
YAML

- name: Install script to update postgrey whitelist
copy:
src: usr/local/sbin/update_postgrey_whitelist.sh
dest: /usr/local/sbin/update_postgrey_whitelist.sh
owner: root
group: root
mode: 0755
- name: Enable postgrey at boot time
service:
name: postgrey
enabled: yes
state: started