mirror of
https://github.com/samba-team/samba.git
synced 2025-07-30 19:42:05 +03:00
kcc: fixed program name
kcccompute -> samba_kcc
This commit is contained in:
@ -655,10 +655,10 @@ def sort_replica_by_dsa_guid(rep1, rep2):
|
||||
return cmp(rep1.rep_dsa_guid, rep2.rep_dsa_guid)
|
||||
|
||||
##################################################
|
||||
# kcccompute entry point
|
||||
# samba_kcc entry point
|
||||
##################################################
|
||||
|
||||
parser = optparse.OptionParser("kcccompute [options]")
|
||||
parser = optparse.OptionParser("samba_kcc [options]")
|
||||
sambaopts = options.SambaOptions(parser)
|
||||
credopts = options.CredentialsOptions(parser)
|
||||
|
||||
@ -669,7 +669,7 @@ parser.add_option_group(options.VersionOptions(parser))
|
||||
parser.add_option("--debug", help="debug output", action="store_true")
|
||||
parser.add_option("--seed", help="random number seed")
|
||||
|
||||
logger = logging.getLogger("kcccompute")
|
||||
logger = logging.getLogger("samba_kcc")
|
||||
logger.addHandler(logging.StreamHandler(sys.stdout))
|
||||
|
||||
lp = sambaopts.get_loadparm()
|
||||
|
Reference in New Issue
Block a user