diff options
author | Narayan Desai <desai@mcs.anl.gov> | 2005-02-02 16:54:47 +0000 |
---|---|---|
committer | Narayan Desai <desai@mcs.anl.gov> | 2005-02-02 16:54:47 +0000 |
commit | 23a6162064eb317ba0bf45b821ea320df74b8f68 (patch) | |
tree | 2d85d9f6d86fb136e6fb483d1a3cfb28371064df /src/lib/Client | |
parent | c43a34226b03c56a2a02c3857b7b5c61b9c629a1 (diff) | |
download | bcfg2-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/lib/Client')
-rw-r--r-- | src/lib/Client/Debian.py | 6 |
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''' |