diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2014-03-07 16:58:06 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2014-03-07 16:58:06 -0300 |
commit | 9489428f3dc28b48870d8b9bfda04e90f67d9017 (patch) | |
tree | 58266af9d09bbc678db413fad1ff5db7f1ff204a /manifests/subsystem | |
parent | 45066adbc965533de3ef20f13f775dbd3b20e0ae (diff) | |
download | puppet-nodo-9489428f3dc28b48870d8b9bfda04e90f67d9017.tar.gz puppet-nodo-9489428f3dc28b48870d8b9bfda04e90f67d9017.tar.bz2 |
Service rrdcached requires munin user and group
Diffstat (limited to 'manifests/subsystem')
-rw-r--r-- | manifests/subsystem/monitor/master.pp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/manifests/subsystem/monitor/master.pp b/manifests/subsystem/monitor/master.pp index 44de95b..3ea3e6b 100644 --- a/manifests/subsystem/monitor/master.pp +++ b/manifests/subsystem/monitor/master.pp @@ -27,6 +27,6 @@ class nodo::subsystem::monitor::master { service { 'rrdcached': ensure => running, - require => Package['rrdcached'], + require => [ Package['rrdcached'], User['munin'], Group['munin'] ], } } |