aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorbinary <me@rgoncalves.se>2020-08-26 11:48:36 +0200
committerbinary <me@rgoncalves.se>2020-08-26 11:48:36 +0200
commita8e6b5114e2ae0dae37cff04af16df47b929d19b (patch)
tree589d53c01c7c92063c3847986efd780ede785886
parent7564e1718169a7ef46f4d3ba2a3545c6537a8d09 (diff)
downloadinfrastructure-a8e6b5114e2ae0dae37cff04af16df47b929d19b.tar.gz
rev1 for znc on openbsd
-rw-r--r--roles/setup_znc/tasks/main.yml27
-rw-r--r--roles/setup_znc/vars/main.yml16
2 files changed, 43 insertions, 0 deletions
diff --git a/roles/setup_znc/tasks/main.yml b/roles/setup_znc/tasks/main.yml
new file mode 100644
index 0000000..6ebbaa8
--- /dev/null
+++ b/roles/setup_znc/tasks/main.yml
@@ -0,0 +1,27 @@
+
+# =========================================================================== #
+# __ _ __
+# _________ / /__ ____ _(_) /_
+# / ___/ __ \/ / _ \ / __ `/ / __/
+# / / / /_/ / / __/ / /_/ / / /_
+# /_/ \____/_/\___(_) \__, /_/\__/
+# /____/
+#
+# =========================================================================== #
+
+---
+- name: Check installation of znc
+ package:
+ name: znc
+ state: present
+
+- name: Add group "{{ znc_group }}"
+ user:
+ name: "{{ znc_group }}"
+ state: present
+
+- name: Add user "{{ znc_user }}"
+ user:
+ name: "{{ znc_user }}"
+ comment: "{{ znc_user_comment }}"
+ group: "{{ znc_group }}"
diff --git a/roles/setup_znc/vars/main.yml b/roles/setup_znc/vars/main.yml
new file mode 100644
index 0000000..2db1770
--- /dev/null
+++ b/roles/setup_znc/vars/main.yml
@@ -0,0 +1,16 @@
+
+# =========================================================================== #
+# _ __
+# _ ______ __________ ____ _(_) /_
+# | | / / __ `/ ___/ ___/ / __ `/ / __/
+# | |/ / /_/ / / (__ ) / /_/ / / /_
+# |___/\__,_/_/ /____(_) \__, /_/\__/
+# /____/
+#
+# =========================================================================== #
+
+---
+znc_user: znc
+znc_user_comment: IRC bouncer
+znc_group: znc
+znc_directory_path: /srv/znc
remember that computers suck.