mirror of
https://gitlab.archlinux.org/archlinux/infrastructure.git
synced 2025-01-18 08:06:16 +01:00
11 lines
313 B
YAML
11 lines
313 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
|