summaryrefslogtreecommitdiffstats
path: root/src/lib/Server/Admin/Bundle.py
diff options
context:
space:
mode:
authorSol Jerome <sol.jerome@gmail.com>2010-10-18 11:43:37 -0500
committerSol Jerome <sol.jerome@gmail.com>2010-10-18 11:46:55 -0500
commit8a70dbabd08308403ad8296979f50c379c707df9 (patch)
tree37d9604b3c6132b1c71622c8cd7cda319dab76c1 /src/lib/Server/Admin/Bundle.py
parent16807d819b63384a0f588b4ea881c7b043571875 (diff)
downloadbcfg2-8a70dbabd08308403ad8296979f50c379c707df9.tar.gz
bcfg2-8a70dbabd08308403ad8296979f50c379c707df9.tar.bz2
bcfg2-8a70dbabd08308403ad8296979f50c379c707df9.zip
POSIX: Remove client-side support for old POSIX types
Signed-off-by: Sol Jerome <sol.jerome@gmail.com>
Diffstat (limited to 'src/lib/Server/Admin/Bundle.py')
-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 e293c6a4f..41cd5727e 100644
--- a/src/lib/Server/Admin/Bundle.py
+++ b/src/lib/Server/Admin/Bundle.py
@@ -91,7 +91,7 @@ class Bundle(Bcfg2.Server.Admin.MetadataCore):
tree = lxml.etree.parse(bundle_list[int(lineno)])
#Prints bundle content
#print lxml.etree.tostring(tree)
- names = ['Action', 'ConfigFile', 'Directory', 'Package', 'Permission', 'Service', 'SymLink']
+ names = ['Action', 'Package', 'Path', 'Service']
for name in names:
for node in tree.findall("//" + name):
print "%s:\t%s" % (name, node.attrib["name"])