summaryrefslogtreecommitdiffstats
path: root/src/lib
diff options
context:
space:
mode:
authorNarayan Desai <desai@mcs.anl.gov>2004-11-02 21:13:17 +0000
committerNarayan Desai <desai@mcs.anl.gov>2004-11-02 21:13:17 +0000
commiteeb2ac6f676ecc65c7b468246f96e53d0cad4d6e (patch)
tree67fdf880044ea7f6107c71659da04f8e57e1dbae /src/lib
parent6036ace124bc10de53597dd23b62d02256e88737 (diff)
downloadbcfg2-eeb2ac6f676ecc65c7b468246f96e53d0cad4d6e.tar.gz
bcfg2-eeb2ac6f676ecc65c7b468246f96e53d0cad4d6e.tar.bz2
bcfg2-eeb2ac6f676ecc65c7b468246f96e53d0cad4d6e.zip
fix tai tb
(Logical change 1.141) git-svn-id: https://svn.mcs.anl.gov/repos/bcfg/trunk/bcfg2@637 ce84e21b-d406-0410-9b95-82705330c041
Diffstat (limited to 'src/lib')
-rw-r--r--src/lib/Client/Debian.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/lib/Client/Debian.py b/src/lib/Client/Debian.py
index b55fc63a7..b9c621e2b 100644
--- a/src/lib/Client/Debian.py
+++ b/src/lib/Client/Debian.py
@@ -222,6 +222,9 @@ class Debian(Toolset):
system('/etc/init.d/%s restart > /dev/null' % (svc.get('name')))
if [x for x in entry.getchildren() if not self.states[x]]:
- self.CondPrint('verbose', "%s %s incomplete" % (entry.tag, entry.name))
+ if entry.tag == 'Bundle':
+ self.CondPrint('verbose', "%s %s incomplete" % (entry.tag, entry.get('name')))
+ else:
+ self.CondPrint('verbose', "Independant incomplete")
else:
self.structures[entry] = True