From dfa944da247f71f4ccf8a18eee30459e6c25caa5 Mon Sep 17 00:00:00 2001 From: Simo Sorce Date: Wed, 20 Jul 2011 18:11:05 -0400 Subject: daemons: Remove ipa_kpasswd Now that we have our own database we can properly enforce stricter constraints on how the db can be changed. Stop shipping our own kpasswd daemon and instead use the regular kadmin daemon. --- ipaserver/install/krbinstance.py | 2 +- ipaserver/install/service.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'ipaserver') diff --git a/ipaserver/install/krbinstance.py b/ipaserver/install/krbinstance.py index 7f77fc1eb..9956b9fb7 100644 --- a/ipaserver/install/krbinstance.py +++ b/ipaserver/install/krbinstance.py @@ -71,7 +71,7 @@ def update_key_val_in_file(filename, key, val): class KpasswdInstance(service.SimpleServiceInstance): def __init__(self): - service.SimpleServiceInstance.__init__(self, "ipa_kpasswd") + service.SimpleServiceInstance.__init__(self, "kadmin") class KrbInstance(service.Service): def __init__(self, fstore=None): diff --git a/ipaserver/install/service.py b/ipaserver/install/service.py index 62db9baf5..2f80749ad 100644 --- a/ipaserver/install/service.py +++ b/ipaserver/install/service.py @@ -34,7 +34,7 @@ CACERT = "/etc/ipa/ca.crt" SERVICE_LIST = { 'KDC':('krb5kdc', 10), - 'KPASSWD':('ipa_kpasswd', 20), + 'KPASSWD':('kadmin', 20), 'DNS':('named', 30), 'HTTP':('httpd', 40), 'CA':('pki-cad', 50) -- cgit