mirror of
https://gitlab.archlinux.org/archlinux/infrastructure.git
synced 2025-01-18 08:06:16 +01:00
The discovery script now uses a regex and no longer cares where exactly accounting is enabled. Follow systemd upstream by enabling it by default. Signed-off-by: Florian Pritz <bluewind@xinu.at>
14 lines
304 B
YAML
14 lines
304 B
YAML
---
|
|
|
|
- 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
|
|
|