summaryrefslogtreecommitdiffstats
path: root/ipa-server/ipaserver
diff options
context:
space:
mode:
authorSimo Sorce <ssorce@redhat.com>2007-08-15 21:35:35 -0400
committerSimo Sorce <ssorce@redhat.com>2007-08-15 21:35:35 -0400
commit82f24bb4902df4da9ba36e3bfe5b4e301c0f4227 (patch)
treef81ea210ad51670f547fa570dc9ce5a417dddcad /ipa-server/ipaserver
parent1e59adbe451680f9ab56323802538804dcfb5180 (diff)
downloadfreeipa-82f24bb4902df4da9ba36e3bfe5b4e301c0f4227.tar.gz
freeipa-82f24bb4902df4da9ba36e3bfe5b4e301c0f4227.tar.xz
freeipa-82f24bb4902df4da9ba36e3bfe5b4e301c0f4227.zip
General fixes.
Do not start ipa_kpasswd by default yet
Diffstat (limited to 'ipa-server/ipaserver')
-rw-r--r--ipa-server/ipaserver/krbinstance.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/ipa-server/ipaserver/krbinstance.py b/ipa-server/ipaserver/krbinstance.py
index c44cff91a..8adeb012f 100644
--- a/ipa-server/ipaserver/krbinstance.py
+++ b/ipa-server/ipaserver/krbinstance.py
@@ -150,9 +150,8 @@ class KrbInstance:
args = ["/usr/kerberos/sbin/kdb5_ldap_util", "-D", "uid=kdc,cn=kerberos,"+self.suffix, "-w", self.kdc_password, "create", "-s", "-P", self.master_password, "-r", self.realm, "-subtrees", self.suffix, "-sscope", "sub"]
run(args)
- # TODO: NOT called yet, need to find out how to make sure the plugin is available first
+ #add the password extop module
def __add_pwd_extop_module(self):
- #add the password extop module
extop_txt = template_file(SHARE_DIR + "pwd-extop-conf.ldif", self.sub_dict)
extop_fd = write_tmp_file(extop_txt)
ldap_mod(extop_fd, "cn=Directory Manager", self.admin_password)