From: Silvio Rhatto Date: Sat, 2 Jan 2010 16:11:25 +0000 (-0200) Subject: Redirecting apt-get update cron entry output to /dev/null X-Git-Url: https://gitweb.fluxo.info/?a=commitdiff_plain;h=9e19eb0808a8ace764c108868d98efe758f49363;p=puppet-apt.git Redirecting apt-get update cron entry output to /dev/null --- diff --git a/manifests/init.pp b/manifests/init.pp index 8593300..8ad0a85 100644 --- a/manifests/init.pp +++ b/manifests/init.pp @@ -99,7 +99,7 @@ class apt { } } else { cron { "apt_updated": - command => "/usr/bin/apt-get update && /usr/bin/apt-get autoclean #hourly &> /dev/null", + command => "/usr/bin/apt-get update &> /dev/null && /usr/bin/apt-get autoclean #hourly &> /dev/null", user => root, hour => "*/1", minute => "0",