aboutsummaryrefslogtreecommitdiff
path: root/manifests/init.pp
diff options
context:
space:
mode:
authorSilvio Rhatto <rhatto@riseup.net>2010-01-02 15:02:34 -0200
committerSilvio Rhatto <rhatto@riseup.net>2010-01-02 15:02:34 -0200
commit3106af6835c72e587431f0817601545e9c41393f (patch)
treeeade68a7c637d31b9e4585e38e3bf38aab0d81fa /manifests/init.pp
parent9e19eb0808a8ace764c108868d98efe758f49363 (diff)
downloadpuppet-apt-3106af6835c72e587431f0817601545e9c41393f.tar.gz
puppet-apt-3106af6835c72e587431f0817601545e9c41393f.tar.bz2
Redirecting apt-get autoclean cron entry output to /dev/null
Diffstat (limited to 'manifests/init.pp')
-rw-r--r--manifests/init.pp2
1 files changed, 1 insertions, 1 deletions
diff --git a/manifests/init.pp b/manifests/init.pp
index 8ad0a85..7d52135 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 &> /dev/null && /usr/bin/apt-get autoclean #hourly &> /dev/null",
+ command => "/usr/bin/apt-get update &> /dev/null && /usr/bin/apt-get autoclean &> /dev/null",
user => root,
hour => "*/1",
minute => "0",