ngircd/tasks/main.yaml
changeset 117 3f0ce0a54663
parent 116 837cf4c1b717
child 118 56bffa9ef826
--- a/ngircd/tasks/main.yaml	Sat Jul 04 17:48:36 2020 -0500
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,24 +0,0 @@
----
-
-- name: apt install ngircd
-  become: yes
-  apt: name="ngircd"
-  notify: restart ngircd
-
-- name: configure ngircd
-  become: yes
-  template:
-    src: "ngircd.conf.j2"
-    dest: "/etc/ngircd/ngircd.conf"
-  notify: restart ngircd
-
-- name: copy motd file
-  become: yes
-  copy:
-    src: "{{ngircd_motd_src}}"
-    dest: "/etc/ngircd/ngircd.motd"
-  notify: restart ngircd
-
-- name: start ngircd service
-  become: yes
-  systemd: name="ngircd" state="started" enabled="yes" daemon_reload="yes"