summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorNarayan Desai <desai@mcs.anl.gov>2005-02-16 22:43:14 +0000
committerNarayan Desai <desai@mcs.anl.gov>2005-02-16 22:43:14 +0000
commitf9cf4f96968681ee2f61f9619ecb1314d9c038c2 (patch)
treeeb799b4d8e331d7dde4bb70acc08f5105ebd4fd4 /src
parent486bc7dbef8935129c341e2b3aef93e285c58ef1 (diff)
downloadbcfg2-f9cf4f96968681ee2f61f9619ecb1314d9c038c2.tar.gz
bcfg2-f9cf4f96968681ee2f61f9619ecb1314d9c038c2.tar.bz2
bcfg2-f9cf4f96968681ee2f61f9619ecb1314d9c038c2.zip
fix var name
(Logical change 1.207) git-svn-id: https://svn.mcs.anl.gov/repos/bcfg/trunk/bcfg2@880 ce84e21b-d406-0410-9b95-82705330c041
Diffstat (limited to 'src')
-rw-r--r--src/lib/Client/Debian.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/Client/Debian.py b/src/lib/Client/Debian.py
index 57b78069a..657f749bb 100644
--- a/src/lib/Client/Debian.py
+++ b/src/lib/Client/Debian.py
@@ -140,7 +140,7 @@ class Debian(Toolset):
system("apt-get remove %s" % " ".join(self.pkgwork['remove']))
else:
self.CondPrint('verbose', "Need to remove packages: %s" % self.pkgwork['remove'])
- if len(self.extra_packages) > 0:
+ if len(self.extra_services) > 0:
self.CondPrint('verbose', "Need to remove services: %s" % self.extra_services)
def Install(self):