1
0
mirror of https://github.com/samba-team/samba.git synced 2025-08-02 00:22:11 +03:00

docs: Remove defaults test exception for "mit kdc command"

This ensures the documentation matches the code.

Signed-off-by: Andrew Bartlett <abartlet@samba.org>
Reviewed-by: Andreas Schneider <asn@samba.org>
This commit is contained in:
Andrew Bartlett
2020-06-17 08:42:08 +12:00
committed by Andreas Schneider
parent 9464505620
commit 1054318827
2 changed files with 3 additions and 3 deletions

View File

@ -119,8 +119,9 @@ def smbdotconf_generate_parameter_list(task):
entities = bld.pathconfig_entities() entities = bld.pathconfig_entities()
# We need this if we build with Heimdal # We need this if we build with Heimdal as we can't easily make
mit_kdc_path = '"/usr/sbin/krb5kdc"' # the whole option go away
mit_kdc_path = '""'
# The MIT krb5kdc path is set if we build with MIT Kerberos # The MIT krb5kdc path is set if we build with MIT Kerberos
if bld.CONFIG_SET('MIT_KDC_PATH'): if bld.CONFIG_SET('MIT_KDC_PATH'):
mit_kdc_path = bld.CONFIG_GET('MIT_KDC_PATH') mit_kdc_path = bld.CONFIG_GET('MIT_KDC_PATH')

View File

@ -122,7 +122,6 @@ class SmbDotConfTests(TestCase):
'template homedir', 'template homedir',
'max open files', 'max open files',
'include system krb5 conf', 'include system krb5 conf',
'mit kdc command',
'smbd max async dosmode', 'smbd max async dosmode',
]) ])