summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorFabian Affolter <fabian@bernewireless.net>2010-06-14 13:40:12 +0000
committerSol Jerome <sol.jerome@gmail.com>2010-06-14 12:58:30 -0500
commit1880631fd4a14f715252109d393fa6293c2cb172 (patch)
treef4fd626f7d518e9d814fe427421d553a0fed607b /src
parentbadfec7f599efe35aee61296ca3a46994de0cda5 (diff)
downloadbcfg2-1880631fd4a14f715252109d393fa6293c2cb172.tar.gz
bcfg2-1880631fd4a14f715252109d393fa6293c2cb172.tar.bz2
bcfg2-1880631fd4a14f715252109d393fa6293c2cb172.zip
Added missing configuration entities
git-svn-id: https://svn.mcs.anl.gov/repos/bcfg/trunk/bcfg2@5928 ce84e21b-d406-0410-9b95-82705330c041
Diffstat (limited to 'src')
-rw-r--r--src/lib/Server/Admin/Bundle.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/Server/Admin/Bundle.py b/src/lib/Server/Admin/Bundle.py
index 92da47c3b..1204c6852 100644
--- a/src/lib/Server/Admin/Bundle.py
+++ b/src/lib/Server/Admin/Bundle.py
@@ -86,7 +86,7 @@ class Bundle(Bcfg2.Server.Admin.MetadataCore):
tree = lxml.etree.parse(bundle_list[int(lineno)])
#Print bundle content
#print lxml.etree.tostring(tree)
- names = ['ConfigFile', 'Package', 'Service']
+ names = ['Action', 'ConfigFile', 'Directory', 'Package', 'Permission', 'Service', 'SymLink']
for name in names:
for node in tree.findall("//" + name):
print "%s:\t%s" % (name, node.attrib["name"])