summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorMike McCallister <mike@mccllstr.com>2011-07-23 10:25:26 -0500
committerMike McCallister <mike@mccllstr.com>2011-07-23 10:25:26 -0500
commit0b69a35bb21341d006a1463f8683d249eae3229a (patch)
tree179f97c444ee87c875ee2d9f809eea1fbc436ee6 /src
parent71b2daf28752af0f4f91e10139bfac8bce10b041 (diff)
downloadbcfg2-0b69a35bb21341d006a1463f8683d249eae3229a.tar.gz
bcfg2-0b69a35bb21341d006a1463f8683d249eae3229a.tar.bz2
bcfg2-0b69a35bb21341d006a1463f8683d249eae3229a.zip
Treat Bound entries like unbound entries for calculating prerequisites in Deps.
Diffstat (limited to 'src')
-rw-r--r--src/lib/Server/Plugins/Deps.py12
1 files changed, 7 insertions, 5 deletions
diff --git a/src/lib/Server/Plugins/Deps.py b/src/lib/Server/Plugins/Deps.py
index cedee4d8b..3a538292e 100644
--- a/src/lib/Server/Plugins/Deps.py
+++ b/src/lib/Server/Plugins/Deps.py
@@ -71,9 +71,12 @@ class Deps(Bcfg2.Server.Plugin.PrioDir,
entries = []
for structure in structures:
for entry in structure.getchildren():
- if (entry.tag, entry.get('name')) not in entries \
- and not isinstance(entry, lxml.etree._Comment):
- entries.append((entry.tag, entry.get('name')))
+ tag = entry.tag
+ if tag.startswith('Bound'):
+ tag = tag[5:]
+ if (tag, entry.get('name')) not in entries \
+ and not isinstance(entry, lxml.etree._Comment):
+ entries.append((tag, entry.get('name')))
entries.sort()
entries = tuple(entries)
gdata = list(metadata.groups)
@@ -101,9 +104,8 @@ class Deps(Bcfg2.Server.Plugin.PrioDir,
set of entries.
"""
prereqs = []
- [src.Cache(metadata) for src in list(self.entries.values())]
+ [src.Cache(metadata) for src in self.entries.values()]
- import ipdb; ipdb.set_trace()
toexamine = list(entries[:])
while toexamine:
entry = toexamine.pop()