summaryrefslogtreecommitdiffstats
path: root/ipalib/plugins
diff options
context:
space:
mode:
authorPavel Zuna <pzuna@redhat.com>2010-01-12 20:09:17 +0100
committerRob Crittenden <rcrit@thor.greyoak.com>2010-01-14 16:02:16 -0500
commitf262a132bea6ec435df1b88c396b60bba12b2b64 (patch)
tree996cd8e6ec7ed86ff0d9346338ac8ab7309f0a20 /ipalib/plugins
parentce87e04af0045f6490fea4b531e3670f52fe0752 (diff)
downloadfreeipa-f262a132bea6ec435df1b88c396b60bba12b2b64.tar.gz
freeipa-f262a132bea6ec435df1b88c396b60bba12b2b64.tar.xz
freeipa-f262a132bea6ec435df1b88c396b60bba12b2b64.zip
Use 'l' instead of 'localityname' in host plugin.
It seems that 'localityname' and 'locality' aliases were dropped in newer versions of DS.
Diffstat (limited to 'ipalib/plugins')
-rw-r--r--ipalib/plugins/host.py16
1 files changed, 14 insertions, 2 deletions
diff --git a/ipalib/plugins/host.py b/ipalib/plugins/host.py
index 9172513b6..6368b8bcd 100644
--- a/ipalib/plugins/host.py
+++ b/ipalib/plugins/host.py
@@ -54,7 +54,7 @@ class host(LDAPObject):
object_class = ['ipaobject', 'nshost', 'ipahost', 'pkiuser', 'ipaservice']
# object_class_config = 'ipahostobjectclasses'
default_attributes = [
- 'fqdn', 'description', 'localityname', 'nshostlocation',
+ 'fqdn', 'description', 'l', 'nshostlocation',
'nshardwareplatform', 'nsosversion', 'usercertificate',
]
uuid_attribute = 'ipauniqueid'
@@ -91,7 +91,7 @@ class host(LDAPObject):
label='Description',
doc='Description of the host',
),
- Str('localityname?',
+ Str('locality?',
cli_name='locality',
label='Locality',
doc='Locality of the host (Baltimore, MD)',
@@ -149,6 +149,9 @@ class host_add(LDAPCreate):
msg_summary = _('Added host "%(value)s"')
def pre_callback(self, ldap, dn, entry_attrs, attrs_list, *keys, **options):
+ if 'locality' in entry_attrs:
+ entry_attrs['l'] = entry_attrs['locality']
+ del entry_attrs['locality']
entry_attrs['cn'] = keys[-1]
entry_attrs['serverhostname'] = keys[-1].split('.', 1)[0]
# FIXME: do DNS lookup to ensure host exists
@@ -212,6 +215,9 @@ class host_mod(LDAPUpdate):
def pre_callback(self, ldap, dn, entry_attrs, attrs_list, *keys, **options):
# Once a principal name is set it cannot be changed
+ if 'locality' in entry_attrs:
+ entry_attrs['l'] = entry_attrs['locality']
+ del entry_attrs['locality']
if 'krbprincipalname' in entry_attrs:
(dn, entry_attrs_old) = ldap.get_entry(
dn, ['objectclass', 'krbprincipalname']
@@ -249,6 +255,12 @@ class host_find(LDAPSearch):
'%(count)d host matched', '%(count)d hosts matched'
)
+ def pre_callback(self, ldap, filter, attrs_list, base_dn, *args, **options):
+ if 'locality' in attrs_list:
+ attrs_list.remove('locality')
+ attrs_list.append('l')
+ return filter.replace('locality', 'l')
+
api.register(host_find)