summaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorMichael DeHaan <mdehaan@mdehaan.rdu.redhat.com>2007-09-25 16:21:27 -0400
committerMichael DeHaan <mdehaan@mdehaan.rdu.redhat.com>2007-09-25 16:21:27 -0400
commit637c6db316c12384f89825e12bf47dda7609ebb9 (patch)
tree8d1e2933b39fef68a9becd764a013eb4a9f64864 /scripts
parent4d36563e61ab0d0b6617aae18c9a6962701c6c59 (diff)
downloadthird_party-func-637c6db316c12384f89825e12bf47dda7609ebb9.tar.gz
third_party-func-637c6db316c12384f89825e12bf47dda7609ebb9.tar.xz
third_party-func-637c6db316c12384f89825e12bf47dda7609ebb9.zip
Adding func (command line client to be run from master) to /usr/bin
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/func14
1 files changed, 14 insertions, 0 deletions
diff --git a/scripts/func b/scripts/func
new file mode 100755
index 0000000..2afb4e7
--- /dev/null
+++ b/scripts/func
@@ -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.client as client
+
+myname, argv = sys.argv[0], sys.argv[1:]
+cli = client.FuncCommandLine(myname, argv)
+cli.run()
+
+