1
0
mirror of https://github.com/samba-team/samba.git synced 2025-03-05 20:58:40 +03:00

Be more pythonic.

(This used to be commit 20d40e31942f96ca9d077e57c6dd4c1d38f79b4b)
This commit is contained in:
Jelmer Vernooij 2008-07-30 13:29:29 +02:00
parent 72d2bea916
commit ee505f36dd

View File

@ -40,8 +40,7 @@ if not loaded:
path=conf.get("private dir") + "/secrets.ldb"
netbios=conf.get("netbios name")
secrets = ldb.Ldb()
secrets.connect(path)
secrets = ldb.Ldb(path)
search = "(&(objectclass=primaryDomain)(samaccountname=" + \
netbios + "$))"
@ -49,13 +48,12 @@ search = "(&(objectclass=primaryDomain)(samaccountname=" + \
msg = secrets.search(expression=search, attrs=['secret'])
if not msg:
error = "Error:\n"
error += "Password for host[" + netbios + "] not found in path[" + path + "].\n"
error += "You may want to pass the smb.conf location via the -s option."
print error
print "Error:"
print "Password for host[%s] not found in path[%s]." % (netbios, path)
print "You may want to pass the smb.conf location via the -s option."
exit(1)
password=msg[0]['secret'][0];
password=msg[0]['secret'][0]
print(password)
exit(0)