File tree Expand file tree Collapse file tree 3 files changed +11
-7
lines changed
ncm-metaconfig/src/main/metaconfig/kerberos Expand file tree Collapse file tree 3 files changed +11
-7
lines changed Original file line number Diff line number Diff line change @@ -18,8 +18,8 @@ type krb5_libdefaults = {
1818 " dns_lookup_realm" : boolean = false
1919 " dns_lookup_kdc" : boolean = false
2020 # The lifetimes are specified in seconds
21- " ticket_lifetime" : long = 24* 60 * 60
22- " renew_lifetime" : long = 7* 24 * 60
21+ " ticket_lifetime" : long = 24 * 60 * 60
22+ " renew_lifetime" : long = 7 * 24 * 60
2323 " forwardable" : boolean = true
2424 " default_keytab_name" : string = " FILE:/etc/krb5.keytab"
2525};
@@ -40,9 +40,11 @@ type kdc_realm = {
4040 " acl_file" : string = " /var/kerberos/krb5kdc/kadm5.acl"
4141 " dict_file" : string = " /usr/share/dict/words"
4242 " admin_keytab" : string = " /var/kerberos/krb5kdc/krb5kdc/kadm5.keytab"
43- " supported_enctypes" : string[] = list (" aes256-cts:normal" ,
44- " aes128-cts:normal" ,
45- " des3-hmac-sha1:normal" )
43+ " supported_enctypes" : string[] = list (
44+ " aes256-cts:normal" ,
45+ " aes128-cts:normal" ,
46+ " des3-hmac-sha1:normal" ,
47+ )
4648};
4749
4850type kdc_conf_file = {
Original file line number Diff line number Diff line change @@ -9,7 +9,8 @@ prefix "/metaconfig/contents";
99 ' KDC.REALM' , dict (
1010 " kdc" , ' KDC.SERVER' ,
1111 " admin_server" , ' KDC.SERVER'
12- ));
12+ ),
13+ );
1314" domain_realms" = dict (' DEFAULT_DOMAIN' , ' KDC.REALM' );
1415
1516# verify schema
Original file line number Diff line number Diff line change @@ -10,5 +10,6 @@ prefix "/software/components/metaconfig/services/{/etc/krb5.conf}/contents";
1010 ' KDC.REALM' , dict (
1111 " kdc" , ' KDC.SERVER' ,
1212 " admin_server" , ' KDC.SERVER'
13- ));
13+ ),
14+ );
1415" domain_realms" = dict (' DEFAULT_DOMAIN' , ' KDC.REALM' );
You can’t perform that action at this time.
0 commit comments