1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-24 02:04:21 +03:00

r26623: python: Allow specifying URL rather than host name on the command-line.

(This used to be commit 108f6caffe2bb311495b89659cfd818f0ec410f2)
This commit is contained in:
Jelmer Vernooij 2007-12-28 16:25:20 -06:00 committed by Stefan Metzmacher
parent a61e25f174
commit 405a20b44f

View File

@ -955,8 +955,10 @@ def find_schemadn(ldb):
assertEquals(len(res), 1)
return res[0].schemaNamingContext
if not "://" in host:
host = "ldap://%s" % host
ldb = Ldb("ldap://%s" % host, credentials=creds, session_info=system_session(),
ldb = Ldb(host, credentials=creds, session_info=system_session(),
lp=lp)
base_dn = find_basedn(ldb)
@ -965,7 +967,7 @@ schema_dn = find_schemadn(ldb)
print "baseDN: %s\n" % base_dn
gc_ldb = Ldb("ldap://%s:3268" % host, credentials=creds,
gc_ldb = Ldb("%s:3268" % host, credentials=creds,
session_info=system_session(), lp=lp)
basic_tests(ldb, gc_ldb, base_dn, configuration_dn, schema_dn)