summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorNarayan Desai <desai@mcs.anl.gov>2005-06-22 20:17:45 +0000
committerNarayan Desai <desai@mcs.anl.gov>2005-06-22 20:17:45 +0000
commit1ffb695121d786a072be9016e2bc82565e41f693 (patch)
treed95e9c417dee4973098b6b1986e3310c897d2e66 /src
parent0c81c6283a960f5fcb5bc3e904c343f3b2506467 (diff)
downloadbcfg2-1ffb695121d786a072be9016e2bc82565e41f693.tar.gz
bcfg2-1ffb695121d786a072be9016e2bc82565e41f693.tar.bz2
bcfg2-1ffb695121d786a072be9016e2bc82565e41f693.zip
fix glob bug and verbose reporting
(Logical change 1.236) git-svn-id: https://svn.mcs.anl.gov/repos/bcfg/trunk/bcfg2@984 ce84e21b-d406-0410-9b95-82705330c041
Diffstat (limited to 'src')
-rw-r--r--src/lib/Client/Debian.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/Client/Debian.py b/src/lib/Client/Debian.py
index 7d4a569cf..df65939d5 100644
--- a/src/lib/Client/Debian.py
+++ b/src/lib/Client/Debian.py
@@ -123,9 +123,9 @@ class Debian(Toolset):
self.CondPrint('verbose', "Need to remove packages: %s" % self.pkgwork['remove'])
if len(self.extra_services) > 0:
if self.setup['remove'] in ['all', 'services']:
- self.CondPrint("Removing services: %s" % self.extra_services)
+ self.CondPrint('verbose', "Removing services: %s" % self.extra_services)
for service in self.extra_services:
- system("rm -f /etc/rc*.d/S*%s" % service)
+ system("rm -f /etc/rc*.d/S??%s" % service)
else:
self.CondPrint('verbose', "Need to remove services: %s" % self.extra_services)