Bug 10461 - kdc:xxx xxx lifetime options are not documented
Summary: kdc:xxx xxx lifetime options are not documented
Status: NEW
Alias: None
Product: Samba 4.1 and newer
Classification: Unclassified
Component: Documentation (show other bugs)
Version: unspecified
Hardware: All All
: P5 normal (vote)
Target Milestone: ---
Assignee: Samba Documentation QA Contact~
QA Contact: Samba Documentation QA Contact~
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2014-02-21 10:19 UTC by Björn Baumbach
Modified: 2014-10-13 10:44 UTC (History)
1 user (show)

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Björn Baumbach 2014-02-21 10:19:25 UTC

    
Comment 1 Björn Baumbach 2014-02-21 10:21:01 UTC
val = lpcfg_parm_long(lp_ctx, NULL,
                      "kdc", "service ticket lifetime", 10);
*svc_tkt_lifetime = val * 60 * 60;

val = lpcfg_parm_long(lp_ctx, NULL,
                      "kdc", "user ticket lifetime", 10);
*usr_tkt_lifetime = val * 60 * 60;

val = lpcfg_parm_long(lp_ctx, NULL,
                      "kdc", "renewal lifetime", 24 * 7);
*renewal_lifetime = val * 60 * 60;
Comment 2 Björn Jacke 2014-02-21 10:26:47 UTC
same for schema update parameter. Usually your users are also able to find  parameters via "testparm -v". With the parametric options which are mostly being introduced because it's earier to add them testparm -v does not print them out. I'd vote for creating a list of parametric options, which don't have to be parametric for whatever reason, and make them non-parametric for the next release. That should be a blocker for 4.2 IMHO.