From 19b5d3033cc9a80666941b607e2fc5932fa8011e Mon Sep 17 00:00:00 2001 From: luke Date: Fri, 30 Jun 2006 14:44:11 +0000 Subject: Accepting patch #189, although I am just putting the environment statement in the main part of the class, since there are two apt commands git-svn-id: https://reductivelabs.com/svn/puppet/trunk@1345 980ebf18-57e1-0310-9a29-db15c13687c0 --- lib/puppet/type/package/apt.rb | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/puppet/type/package/apt.rb b/lib/puppet/type/package/apt.rb index b470272a8..10a1506a2 100755 --- a/lib/puppet/type/package/apt.rb +++ b/lib/puppet/type/package/apt.rb @@ -1,5 +1,7 @@ module Puppet Puppet.type(:package).newpkgtype(:apt, :dpkg) do + ENV['DEBIAN_FRONTEND'] = "noninteractive" + # A derivative of DPKG; this is how most people actually manage # Debian boxes, and the only thing that differs is that it can # install packages from remote sites. -- cgit