Starting off the certmaster tree with most of the func code, shortly non-certmaster...
[certmaster.git] / scripts / func
diff --git a/scripts/func b/scripts/func
new file mode 100755 (executable)
index 0000000..925d6ad
--- /dev/null
@@ -0,0 +1,14 @@
+#!/usr/bin/python
+
+import sys
+import distutils.sysconfig
+
+# sys.path.append("%s/func" % distutils.sysconfig.get_python_lib())
+
+import func.overlord.func_command as func_command
+
+myname, argv = sys.argv[0], sys.argv[1:]
+cli = func_command.FuncCommandLine()
+cli.parse(argv)
+
+