summaryrefslogtreecommitdiffstats
path: root/ipalib/plugins/f_automount.py
diff options
context:
space:
mode:
Diffstat (limited to 'ipalib/plugins/f_automount.py')
-rw-r--r--ipalib/plugins/f_automount.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/ipalib/plugins/f_automount.py b/ipalib/plugins/f_automount.py
index b90a68271..b25f512a5 100644
--- a/ipalib/plugins/f_automount.py
+++ b/ipalib/plugins/f_automount.py
@@ -169,7 +169,7 @@ class automount_addmap(crud.Add):
kw['automountmapname'] = mapname
kw['dn'] = make_automount_dn(mapname)
- kw['objectClass'] = ['automountMap']
+ kw['objectclass'] = ['automountMap']
return ldap.create(**kw)
@@ -215,7 +215,7 @@ class automount_addkey(crud.Add):
kw['automountinformation'] = make_ldap_map(config.get('automountldapuri', False), kw['automountinformation'])
- kw['objectClass'] = ['automount']
+ kw['objectclass'] = ['automount']
return ldap.create(**kw)