diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2014-03-13 19:29:50 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2014-03-13 19:29:50 -0300 |
commit | f415b0936a7cd7f6f8bf28466f53e45a47ab68d7 (patch) | |
tree | 26b94831e176b23e1dacf1ca99ddfe500b54c68e /files | |
parent | ed48f86d5080fa7d376b7d002d44ec6c42729dd4 (diff) | |
download | puppet-nodo-f415b0936a7cd7f6f8bf28466f53e45a47ab68d7.tar.gz puppet-nodo-f415b0936a7cd7f6f8bf28466f53e45a47ab68d7.tar.bz2 |
Fixing typo at munin cronjob
Diffstat (limited to 'files')
-rw-r--r-- | files/etc/cron.d/munin | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/files/etc/cron.d/munin b/files/etc/cron.d/munin index a56501a..558a2df 100644 --- a/files/etc/cron.d/munin +++ b/files/etc/cron.d/munin @@ -5,5 +5,5 @@ MAILTO="" @reboot root if [ ! -d /var/run/munin ]; then /bin/bash -c 'perms=(`/usr/sbin/dpkg-statoverride --list /var/run/munin`); mkdir /var/run/munin; chown ${perms[0]:-munin}:${perms[1]:-root} /var/run/munin; chmod ${perms[2]:-0755} /var/run/munin'; fi -*/5 * * * * munin if [ -x /usr/loca/bin/munin-cron ]; then /usr/local/bin/munin-cron &> /dev/null; fi +*/5 * * * * munin if [ -x /usr/local/bin/munin-cron ]; then /usr/local/bin/munin-cron &> /dev/null; fi 14 10 * * * munin if [ -x /usr/share/munin/munin-limits ]; then /usr/share/munin/munin-limits --force --contact nagios --contact old-nagios; fi |