From 41312ca166f5192b6e6c507225e4333206d6b5c2 Mon Sep 17 00:00:00 2001 From: Pavel Zuna Date: Thu, 25 Feb 2010 14:19:56 +0100 Subject: Code cleanup: remove unused stuff, take 1. --- ipalib/plugins/automount.py | 11 ----------- 1 file changed, 11 deletions(-) (limited to 'ipalib/plugins/automount.py') diff --git a/ipalib/plugins/automount.py b/ipalib/plugins/automount.py index 71a21824..5c959147 100644 --- a/ipalib/plugins/automount.py +++ b/ipalib/plugins/automount.py @@ -100,9 +100,6 @@ class automountlocation(LDAPObject): object_name_plural = 'automount locations' object_class = ['nscontainer'] default_attributes = ['cn'] - attribute_names = { - 'cn': 'name', - } takes_params = ( Str('cn', @@ -220,9 +217,6 @@ class automountmap(LDAPObject): object_name_plural = 'automount maps' object_class = ['automountmap'] default_attributes = ['automountmapname', 'description'] - attribute_names = { - 'automountmapname': 'name', - } takes_params = ( Str('automountmapname', @@ -305,11 +299,6 @@ class automountkey(LDAPObject): default_attributes = [ 'automountkey', 'automountinformation', 'description' ] - attribute_names = { - 'automountkey': 'key', - 'automountinformation': 'mount information', - } - attribute_order = ['automountkey', 'automountinformation'] takes_params = ( Str('automountkey', -- cgit