1
1
mirror of https://gitlab.archlinux.org/archlinux/infrastructure.git synced 2024-09-20 22:33:20 +02:00
infrastructure/roles/postfwd/tasks/main.yml

13 lines
303 B
YAML
Raw Normal View History

---
- name: install postfwd
pacman: name=postfwd state=present
- name: install postfwd.cf
template: src=postfwd.cf.j2 dest=/etc/postfwd/postfwd.cf owner=postfwd group=root mode=0600
notify:
- reload postfwd
- name: start and enable postfwd
service: name=postfwd enabled=yes state=started