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