From 173b1554013ec29dd60b701d4d49e1161fed2523 Mon Sep 17 00:00:00 2001 From: Luke Hoersten Date: Sat, 4 Jul 2020 11:00:20 -0500 Subject: Got ngircd + atheme services roles working. --- atheme/tasks/main.yaml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 atheme/tasks/main.yaml (limited to 'atheme/tasks/main.yaml') diff --git a/atheme/tasks/main.yaml b/atheme/tasks/main.yaml new file mode 100644 index 0000000..bbc1d51 --- /dev/null +++ b/atheme/tasks/main.yaml @@ -0,0 +1,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" -- cgit v1.2.3