changeset 113 | d843011c249d |
112:22c06d6916bf | 113:d843011c249d |
---|---|
1 --- |
|
2 |
|
3 - name: apt install atheme |
|
4 become: yes |
|
5 apt: name="atheme-services" |
|
6 notify: restart atheme |
|
7 |
|
8 - name: configure atheme |
|
9 become: yes |
|
10 template: |
|
11 src: "atheme.conf.j2" |
|
12 dest: "/etc/atheme/atheme.conf" |
|
13 notify: restart atheme |
|
14 |
|
15 - name: start atheme service |
|
16 become: yes |
|
17 systemd: name="atheme-services.service" state="started" enabled="yes" daemon_reload="yes" |