Be more pythonic.
authorJelmer Vernooij <jelmer@samba.org>
Wed, 30 Jul 2008 11:29:29 +0000 (13:29 +0200)
committerJelmer Vernooij <jelmer@samba.org>
Wed, 30 Jul 2008 11:29:29 +0000 (13:29 +0200)
(This used to be commit 20d40e31942f96ca9d077e57c6dd4c1d38f79b4b)

source4/scripting/bin/mymachinepw

index 49a4245a3adbc298cdfa5347568af33dde92d9cb..3a843b5947df634627ecdc31c3e8e1597bef7e73 100755 (executable)
@@ -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)