src.nth.io/

summaryrefslogtreecommitdiff
path: root/ngircd/tasks
diff options
context:
space:
mode:
authorLuke Hoersten <[email protected]>2020-07-04 18:07:07 -0500
committerLuke Hoersten <[email protected]>2020-07-04 18:07:07 -0500
commit79880c1df8fd49110486051df059f259a1a7d08f (patch)
tree4fee195663ce83325fc0c91196bc94570b04424d /ngircd/tasks
parent9f1af3e9efa0f21e365ffeeec2d97c4d16228f25 (diff)
Removed ngircd and atheme roles in favor of oragono.
Diffstat (limited to 'ngircd/tasks')
-rw-r--r--ngircd/tasks/main.yaml24
1 files changed, 0 insertions, 24 deletions
diff --git a/ngircd/tasks/main.yaml b/ngircd/tasks/main.yaml
deleted file mode 100644
index d8341f1..0000000
--- a/ngircd/tasks/main.yaml
+++ /dev/null
@@ -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"