From: Micah Anderson Date: Sat, 18 Dec 2010 20:47:11 +0000 (-0500) Subject: add -q to the apt-get invocation in upgrade_package.pp, also switch to using -y inste... X-Git-Url: https://gitweb.fluxo.info/?a=commitdiff_plain;h=c5dc8ff5fc7762fc81871f71bed54daaee1f8707;p=puppet-apt.git add -q to the apt-get invocation in upgrade_package.pp, also switch to using -y instead of --force-yes. this way we are acting in the same way as the dist_upgrade class --- diff --git a/manifests/upgrade_package.pp b/manifests/upgrade_package.pp index ceb8ca3..9202624 100644 --- a/manifests/upgrade_package.pp +++ b/manifests/upgrade_package.pp @@ -22,7 +22,7 @@ define apt::upgrade_package ($version = "") { } } - exec { "apt-get --force-yes -o DPkg::Options::=--force-confold install ${name}${version_suffix}": + exec { "apt-get -q -y -o 'DPkg::Options::=--force-confold' install ${name}${version_suffix}": onlyif => [ "grep-status -F Status installed -a -P $name -q", "apt-show-versions -u $name | grep -q upgradeable" ], require => [ Exec['apt_updated'],