aboutsummaryrefslogtreecommitdiffstats
path: root/ansible/roles/snmp/tasks
diff options
context:
space:
mode:
authorOle Mathias Heggem <ole@sdok.no>2017-04-19 23:16:07 +0200
committerOle Mathias Heggem <ole@sdok.no>2017-04-19 23:16:07 +0200
commit7b97188b728c85c498acc8acdce1750c472f2c85 (patch)
tree12c1436ab7eb97e9434e774671e8ffea134d61db /ansible/roles/snmp/tasks
parentf70f65f7466a480a45a8260b35887cb7ed36b466 (diff)
parent7d404abf07d865d253ac2cfc353741e8d4af4867 (diff)
Merge remote-tracking branch 'refs/remotes/tech-server/master'
Diffstat (limited to 'ansible/roles/snmp/tasks')
-rw-r--r--ansible/roles/snmp/tasks/main.yml23
1 files changed, 23 insertions, 0 deletions
diff --git a/ansible/roles/snmp/tasks/main.yml b/ansible/roles/snmp/tasks/main.yml
new file mode 100644
index 0000000..2cb7165
--- /dev/null
+++ b/ansible/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