aboutsummaryrefslogtreecommitdiff
path: root/manifests/init.pp
diff options
context:
space:
mode:
authorSilvio Rhatto <rhatto@riseup.net>2010-01-02 14:11:25 -0200
committerSilvio Rhatto <rhatto@riseup.net>2010-01-02 14:11:25 -0200
commit9e19eb0808a8ace764c108868d98efe758f49363 (patch)
tree0ba9c260d1d18e535e8501d54531a8eb65cd5cdc /manifests/init.pp
parent602824e39c1a4e42d5dab7959d607785cf2ee5d2 (diff)
downloadpuppet-apt-9e19eb0808a8ace764c108868d98efe758f49363.tar.gz
puppet-apt-9e19eb0808a8ace764c108868d98efe758f49363.tar.bz2
Redirecting apt-get update 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 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",