From 637c6db316c12384f89825e12bf47dda7609ebb9 Mon Sep 17 00:00:00 2001 From: Michael DeHaan Date: Tue, 25 Sep 2007 16:21:27 -0400 Subject: Adding func (command line client to be run from master) to /usr/bin --- scripts/func | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100755 scripts/func (limited to 'scripts') 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() + + -- cgit