summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorNarayan Desai <desai@mcs.anl.gov>2005-02-02 16:54:47 +0000
committerNarayan Desai <desai@mcs.anl.gov>2005-02-02 16:54:47 +0000
commit23a6162064eb317ba0bf45b821ea320df74b8f68 (patch)
tree2d85d9f6d86fb136e6fb483d1a3cfb28371064df /src
parentc43a34226b03c56a2a02c3857b7b5c61b9c629a1 (diff)
downloadbcfg2-23a6162064eb317ba0bf45b821ea320df74b8f68.tar.gz
bcfg2-23a6162064eb317ba0bf45b821ea320df74b8f68.tar.bz2
bcfg2-23a6162064eb317ba0bf45b821ea320df74b8f68.zip
fix extra printing
(Logical change 1.203) git-svn-id: https://svn.mcs.anl.gov/repos/bcfg/trunk/bcfg2@863 ce84e21b-d406-0410-9b95-82705330c041
Diffstat (limited to 'src')
-rw-r--r--src/lib/Client/Debian.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lib/Client/Debian.py b/src/lib/Client/Debian.py
index d9e5e2671..2537e7e45 100644
--- a/src/lib/Client/Debian.py
+++ b/src/lib/Client/Debian.py
@@ -135,11 +135,11 @@ class Debian(Toolset):
def HandleExtra(self):
'''Deal with extra configuration detected'''
if self.setup['remove'] in ['all', 'packages']:
- self.CondPrint('verbose', "Removing packages:" % self.pkgwork['remove'])
+ self.CondPrint('verbose', "Removing packages: %s" % self.pkgwork['remove'])
system("apt-get remove %s" % " ".join(self.pkgwork['remove']))
else:
- self.CondPrint('verbose', "Need to remove packages:" % self.pkgwork['remove'])
- self.CondPrint('verbose', "Need to remove services:" % self.extra_services)
+ self.CondPrint('verbose', "Need to remove packages: %s" % self.pkgwork['remove'])
+ self.CondPrint('verbose', "Need to remove services: %s" % self.extra_services)
def Install(self):
'''Correct detected misconfigurations'''