diff options
author | Adam Young <ayoung@redhat.com> | 2011-01-03 13:13:56 -0500 |
---|---|---|
committer | Adam Young <ayoung@redhat.com> | 2011-01-05 13:18:29 -0500 |
commit | e66e29be7d268efe9e5bc675e54a02330d639e96 (patch) | |
tree | bfb4d5b51950ffc056a0500e3281625bea4c1517 /install/static/policy.js | |
parent | a7b926420fda10fba7eb372d5341e36168a848b3 (diff) | |
download | freeipa.git-e66e29be7d268efe9e5bc675e54a02330d639e96.tar.gz freeipa.git-e66e29be7d268efe9e5bc675e54a02330d639e96.tar.xz freeipa.git-e66e29be7d268efe9e5bc675e54a02330d639e96.zip |
fix krbtpolicy update
krbtpolicy requires null pkey, and without it, update breaks.
Diffstat (limited to 'install/static/policy.js')
-rw-r--r-- | install/static/policy.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/install/static/policy.js b/install/static/policy.js index 97e838f9..d8cfbec9 100644 --- a/install/static/policy.js +++ b/install/static/policy.js @@ -588,8 +588,8 @@ IPA.add_entity(function (){ */ ipa_entity_set_details_definition('krbtpolicy', [ - ipa_stanza({name:'identity', label:'Krbtpolicy Location Details'}). - input({name:'cn'}). + ipa_stanza({name:'identity', label:'Kerberos ticket policy'}). + input({name:'uid'}). input({name:'krbmaxrenewableage'}). input({name:'krbmaxticketlife'}) ]); |