diff options
author | Narayan Desai <desai@mcs.anl.gov> | 2004-11-04 16:17:53 +0000 |
---|---|---|
committer | Narayan Desai <desai@mcs.anl.gov> | 2004-11-04 16:17:53 +0000 |
commit | 19ec37e645eadd7e0452cc0ccc60fa89640c1b27 (patch) | |
tree | f8554fe196c8c42db608377ef4c733277a53012b /src/lib/Client/Debian.py | |
parent | bda49efb4c21f093206a9ff48fdf9876dee01e73 (diff) | |
download | bcfg2-19ec37e645eadd7e0452cc0ccc60fa89640c1b27.tar.gz bcfg2-19ec37e645eadd7e0452cc0ccc60fa89640c1b27.tar.bz2 bcfg2-19ec37e645eadd7e0452cc0ccc60fa89640c1b27.zip |
fix noninteractive installs
(Logical change 1.143)
git-svn-id: https://svn.mcs.anl.gov/repos/bcfg/trunk/bcfg2@642 ce84e21b-d406-0410-9b95-82705330c041
Diffstat (limited to 'src/lib/Client/Debian.py')
-rw-r--r-- | src/lib/Client/Debian.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/Client/Debian.py b/src/lib/Client/Debian.py index da096a2e8..8ec003c39 100644 --- a/src/lib/Client/Debian.py +++ b/src/lib/Client/Debian.py @@ -130,7 +130,7 @@ class Debian(Toolset): def Install(self): '''Correct detected misconfigurations''' self.CondPrint("verbose", "Installing needed configuration changes") - cmd = "apt-get --reinstall -q=2 -y install %s" + cmd = "DEBIAN_FRONTEND=noninteractive apt-get --reinstall -q=2 -y install %s" print "Need to remove:", self.pkgwork['remove'] self.setup['quick'] = True # need installed for bundle verification |