diff options
author | Narayan Desai <desai@mcs.anl.gov> | 2005-01-07 23:05:14 +0000 |
---|---|---|
committer | Narayan Desai <desai@mcs.anl.gov> | 2005-01-07 23:05:14 +0000 |
commit | 41f462a21a57b9daced95f17163cc2c4bdde0632 (patch) | |
tree | 871614d695800820f9a3dea42450f5dd75b3f76b /src/lib | |
parent | a7f7599badc48d40ce4ceefddf826fd37e012c30 (diff) | |
download | bcfg2-41f462a21a57b9daced95f17163cc2c4bdde0632.tar.gz bcfg2-41f462a21a57b9daced95f17163cc2c4bdde0632.tar.bz2 bcfg2-41f462a21a57b9daced95f17163cc2c4bdde0632.zip |
add apt-get clean call
(Logical change 1.180)
git-svn-id: https://svn.mcs.anl.gov/repos/bcfg/trunk/bcfg2@776 ce84e21b-d406-0410-9b95-82705330c041
Diffstat (limited to 'src/lib')
-rw-r--r-- | src/lib/Client/Debian.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/lib/Client/Debian.py b/src/lib/Client/Debian.py index b03c9c75b..2d4b589bd 100644 --- a/src/lib/Client/Debian.py +++ b/src/lib/Client/Debian.py @@ -24,6 +24,7 @@ class Debian(Toolset): system("dpkg --force-confold --configure -a") if not self.setup['build']: system("dpkg-reconfigure -f noninteractive debconf < /dev/null") + system("apt-get clean") system("apt-get -q=2 -y update") self.installed = {} self.installed_this_run = [] |