From 697402da24ca930b3608359a61b9872fdddc62d9 Mon Sep 17 00:00:00 2001 From: Michael DeHaan Date: Thu, 7 Feb 2008 12:08:55 -0500 Subject: Starting off the certmaster tree with most of the func code, shortly non-certmaster related parts will be removed, and other small parts added/tweaked --- scripts/funcd | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100755 scripts/funcd (limited to 'scripts/funcd') diff --git a/scripts/funcd b/scripts/funcd new file mode 100755 index 0000000..3d807bd --- /dev/null +++ b/scripts/funcd @@ -0,0 +1,10 @@ +#!/usr/bin/python + + +import sys +import distutils.sysconfig + +from func.minion import server + +if __name__ == "__main__": + server.main(sys.argv) -- cgit