diff options
author | Micah Anderson <micah@riseup.net> | 2013-02-12 13:39:12 -0500 |
---|---|---|
committer | Micah Anderson <micah@riseup.net> | 2013-02-12 14:06:16 -0500 |
commit | 2fd403476e77a545355443667408ba0cf6205fcd (patch) | |
tree | 83089777ed28bba8ce023023b2bb71f920432cc0 | |
parent | 2e5eec3856b58aaff0a2049599a6455e6ff91122 (diff) |
remove the apt-get autoclean from the initial apt-get update, this just slows things down and I don't see a need for it
-rw-r--r-- | puppet/modules/site_apt/manifests/dist_upgrade.pp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/puppet/modules/site_apt/manifests/dist_upgrade.pp b/puppet/modules/site_apt/manifests/dist_upgrade.pp index f129dd73..f8ea05fc 100644 --- a/puppet/modules/site_apt/manifests/dist_upgrade.pp +++ b/puppet/modules/site_apt/manifests/dist_upgrade.pp @@ -4,7 +4,7 @@ class site_apt::dist_upgrade { fail ('apt-get is running in background - Please wait until it finishes. Exiting.') } else { exec{'initial_apt_update': - command => '/usr/bin/apt-get update && /usr/bin/apt-get autoclean', + command => '/usr/bin/apt-get update', refreshonly => false, } exec{'initial_apt_dist_upgrade': |