aboutsummaryrefslogtreecommitdiffstats
path: root/roles/snmp/tasks
diff options
context:
space:
mode:
authorKristian <kly@gondul-tg17.kly.no>2017-04-19 18:13:19 +0200
committerKristian <kly@gondul-tg17.kly.no>2017-04-19 18:13:19 +0200
commit5bd19932a886eae468fea8bcb0e30c78f1d45141 (patch)
tree5357cc40a58e0bb3adbfbb874365d0073dd75fe6 /roles/snmp/tasks
parent53fb0f8f3155748134fb1d908ac3e24a90217de2 (diff)
build: Add ping/snmp to new-scheme
Diffstat (limited to 'roles/snmp/tasks')
-rw-r--r--roles/snmp/tasks/main.yml23
1 files changed, 23 insertions, 0 deletions
diff --git a/roles/snmp/tasks/main.yml b/roles/snmp/tasks/main.yml
new file mode 100644
index 0000000..2cb7165
--- /dev/null
+++ b/roles/snmp/tasks/main.yml
@@ -0,0 +1,23 @@
+- file:
+ path: /opt/gondul/data
+ state: directory
+ mode: 0755
+- stat:
+ path: /opt/gondul/data/mibs
+ register: mibdir
+- name: Get mibs
+ command: /opt/gondul/extras/tools/get_mibs.sh
+ args:
+ chdir: /opt/gondul/data/
+ when: not mibdir.stat.exists
+ notify: restart gondul-snmp
+- name: Add systemd service file for gondul-snmp
+ copy:
+ dest: /etc/systemd/system/gondul-snmp.service
+ src: gondul-snmp.service
+ notify: restart gondul-snmp
+- name: Enable snmp service
+ systemd:
+ name: gondul-snmp.service
+ enabled: yes
+ notify: restart gondul-snmp