diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2015-09-18 14:19:24 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2015-09-18 14:19:24 -0300 |
commit | 3e177f199af04a5109b903dfa4b50d8558e743c5 (patch) | |
tree | 5b52c68e6f02149bc57046543620f464b0095ce0 /manifests | |
parent | d09f347afc0a99481673f227f83864d06206add6 (diff) | |
download | puppet-nodo-3e177f199af04a5109b903dfa4b50d8558e743c5.tar.gz puppet-nodo-3e177f199af04a5109b903dfa4b50d8558e743c5.tar.bz2 |
Fix ifcheck cron output
Diffstat (limited to 'manifests')
-rw-r--r-- | manifests/subsystem/monitor/interface.pp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/manifests/subsystem/monitor/interface.pp b/manifests/subsystem/monitor/interface.pp index 102f5b2..4f0ec61 100644 --- a/manifests/subsystem/monitor/interface.pp +++ b/manifests/subsystem/monitor/interface.pp @@ -5,7 +5,7 @@ define nodo::subsystem::monitor::interface( ) { cron { "ifcheck-${name}": - command => "/usr/local/sbin/ifcheck ${name}", + command => "/usr/local/sbin/ifcheck ${name} &> /dev/null", user => 'root', hour => $hour, minute => $minute, |