diff options
| author | Abhijeet Kasurde <akasurde@redhat.com> | 2015-12-21 12:03:10 +0530 |
|---|---|---|
| committer | Martin Basti <mbasti@redhat.com> | 2016-01-20 14:05:50 +0100 |
| commit | e381d763fa99df80c326b7fa63469d3380b7f08e (patch) | |
| tree | 96a8434bd6d0513212b9045a34a33af1e6212499 | |
| parent | 3aef54d0c2b5a6fcb305e71530a850fedbb84cf8 (diff) | |
| download | freeipa-e381d763fa99df80c326b7fa63469d3380b7f08e.tar.gz freeipa-e381d763fa99df80c326b7fa63469d3380b7f08e.tar.xz freeipa-e381d763fa99df80c326b7fa63469d3380b7f08e.zip | |
Added kpasswd_server directive in client krb5.conf
While configuring ipa client using ipa-client-install can configure
kpasswd_server explicitly using directive in client's krb5.conf
https://fedorahosted.org/freeipa/ticket/5547
Signed-off-by: Abhijeet Kasurde <akasurde@redhat.com>
Reviewed-By: Christian Heimes <cheimes@redhat.com>
| -rwxr-xr-x | ipa-client/ipa-install/ipa-client-install | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/ipa-client/ipa-install/ipa-client-install b/ipa-client/ipa-install/ipa-client-install index 81443fd23..072bf9d17 100755 --- a/ipa-client/ipa-install/ipa-client-install +++ b/ipa-client/ipa-install/ipa-client-install @@ -1106,6 +1106,10 @@ def configure_krb5_conf(cli_realm, cli_domain, cli_server, cli_kdc, dnsok, kropts.append({'name':'kdc', 'type':'option', 'value':ipautil.format_netloc(server, 88)}) kropts.append({'name':'master_kdc', 'type':'option', 'value':ipautil.format_netloc(server, 88)}) kropts.append({'name':'admin_server', 'type':'option', 'value':ipautil.format_netloc(server, 749)}) + kropts.append({'name': 'kpasswd_server', + 'type': 'option', + 'value': ipautil.format_netloc(server, 464) + }) kropts.append({'name':'default_domain', 'type':'option', 'value':cli_domain}) kropts.append({'name':'pkinit_anchors', 'type':'option', 'value':'FILE:%s' % CACERT}) ropts = [{'name':cli_realm, 'type':'subsection', 'value':kropts}] |
