Allow ms_schema.py to produce output much like minschema_wspp
authorSreepathi Pai <sree314@gmail.com>
Thu, 5 Mar 2009 06:03:13 +0000 (17:03 +1100)
committerAndrew Bartlett <abartlet@samba.org>
Thu, 5 Mar 2009 06:03:13 +0000 (17:03 +1100)
I've patched the new ms_schema.py (which was intended to be used as a
library) to function as minschema_wspp if invoked standalone. Although
this is less robust than minschema_wspp on incorrect data, having two
programs doing the same thing might not be good idea.

Signed-off-by: Andrew Bartlett <abartlet@samba.org>
source4/scripting/python/samba/ms_schema.py

index 1dbab4c9471ec12d288ff53a27e16af41cf1c278..f23bf0cdfe2478cedf08430668eafff1a81c902e 100644 (file)
@@ -1,3 +1,4 @@
+#!/usr/bin/env python
 #
 # create schema.ldif (as a string) from WSPP documentation
 #
@@ -252,3 +253,17 @@ def read_ms_schema(attr_file, classes_file, dump_attributes = True, dump_classes
         classes_ldif = __parse_schema_file(classes_file, "classSchema")
 
     return attr_ldif + "\n\n" + classes_ldif + "\n\n"
+
+if __name__ == '__main__':
+    import sys
+
+    try:
+        attr_file = sys.argv[1]
+        classes_file = sys.argv[2]
+    except IndexError:
+        print >>sys.stderr, "Usage: %s attr-file.txt classes-file.txt" % (sys.argv[0])
+        sys.exit(1)
+        
+    print read_ms_schema(attr_file, classes_file)
+
+