skeleton with working munin.node state

This commit is contained in:
Kenny Do
2014-01-04 21:47:26 -08:00
parent 44d7277686
commit 000daf202e
6 changed files with 37 additions and 0 deletions

0
munin/node/config.sls Normal file
View File

10
munin/node/init.sls Normal file
View File

@ -0,0 +1,10 @@
{% from "munin/map.jinja" import munin_node with context %}
munin_node:
pkg.installed:
- name: {{ munin_node.package }}
service.running:
- enable: True
- name: {{ munin_node.service }}
- require:
- pkg: {{ munin_node.package }}