1
1
mirror of https://gitlab.archlinux.org/archlinux/infrastructure.git synced 2025-01-18 08:06:16 +01:00
infrastructure/roles/fetchmail/tasks/main.yml
2020-12-24 11:36:37 -03:00

13 lines
318 B
YAML

---
- name: install fetchmail
pacman: name=fetchmail state=present
- name: template fetchmail config
template: src=fetchmailrc.j2 dest=/etc/fetchmailrc owner=fetchmail group=nobody mode=600
notify:
- restart fetchmail
- name: start and enable fetchmail
service: name=fetchmail enabled=yes state=started