summaryrefslogtreecommitdiffstats
path: root/src/lib/Server/Plugins/Packages.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/Server/Plugins/Packages.py')
-rw-r--r--src/lib/Server/Plugins/Packages.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/lib/Server/Plugins/Packages.py b/src/lib/Server/Plugins/Packages.py
index 490f1152c..40d6ed6cd 100644
--- a/src/lib/Server/Plugins/Packages.py
+++ b/src/lib/Server/Plugins/Packages.py
@@ -595,7 +595,8 @@ class Packages(Bcfg2.Server.Plugin.Plugin,
structures - a list of structure-stage entry combinations
'''
initial = set([pkg.get('name') for struct in structures \
- for pkg in struct.findall('Package')])
+ for pkg in struct.findall('Package') +
+ struct.findall('BoundPackage')])
news = lxml.etree.Element('Independent')
packages, unknown, ptype = self.complete(meta, initial,
debug=self.debug_flag)