diff options
| author | Adrian Likins <alikins@grimlock.devel.redhat.com> | 2007-09-20 15:08:27 -0400 |
|---|---|---|
| committer | Adrian Likins <alikins@grimlock.devel.redhat.com> | 2007-09-20 15:08:27 -0400 |
| commit | 733df2df42180487608688951acf1a83e079a86c (patch) | |
| tree | 01917e26d60194ac294008a95394d18029522b32 /scripts/funcd | |
| parent | d96d4b72aebee6dc1089dd260705c23cb1b9cd27 (diff) | |
| download | third_party-func-733df2df42180487608688951acf1a83e079a86c.tar.gz third_party-func-733df2df42180487608688951acf1a83e079a86c.tar.xz third_party-func-733df2df42180487608688951acf1a83e079a86c.zip | |
initial code drop
module_loader from the virt-factory node server
xmlrpc server from the virt-factory-server code and some test modules
no ssl support yet, no init scripts, no packagin etc
Diffstat (limited to 'scripts/funcd')
| -rwxr-xr-x | scripts/funcd | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/scripts/funcd b/scripts/funcd new file mode 100755 index 0000000..165dd68 --- /dev/null +++ b/scripts/funcd @@ -0,0 +1,12 @@ +#!/usr/bin/python + + +import sys +import distutils.sysconfig + +sys.path.append("%s/func" % distutils.sysconfig.get_python_lib()) + +from server import server + +if __name__ == "__main__": + server.main(sys.argv) |
