mirror of
https://github.com/samba-team/samba.git
synced 2024-12-23 17:34:34 +03:00
s4-spnupdate: only enable NDR print at log level above 5
This commit is contained in:
parent
1ce223017d
commit
3f952aba2b
@ -195,7 +195,10 @@ def call_rodc_update(d):
|
||||
sys.exit(1)
|
||||
server = cldap_ret.pdc_dns_name
|
||||
try:
|
||||
drs = drsuapi.drsuapi('ncacn_ip_tcp:%s[seal,print]' % server, lp, creds)
|
||||
binding_options = "seal"
|
||||
if lp.get("log level") >= 5:
|
||||
binding_options += ",print"
|
||||
drs = drsuapi.drsuapi('ncacn_ip_tcp:%s[%s]' % (server, binding_options), lp, creds)
|
||||
(drs_handle, supported_extensions) = drs_utils.drs_DsBind(drs)
|
||||
except Exception, reason:
|
||||
print("Unable to connect to DC '%s' for domain '%s' : %s" % (server, domain, reason))
|
||||
|
Loading…
Reference in New Issue
Block a user