summaryrefslogtreecommitdiffstats
path: root/funcweb/scripts/funcwebd
diff options
context:
space:
mode:
authormakkalot <makkalot@gmail.com>2008-07-06 18:14:28 +0300
committermakkalot <makkalot@gmail.com>2008-07-06 18:14:28 +0300
commitbb2769a62e687cf9939d0604f8af44a3a384b75b (patch)
tree2ada21d9f5f49723ba18126953c7d57ed275f7b0 /funcweb/scripts/funcwebd
parent8332e48188c9b683ad814e82f19d6b75851c4fb5 (diff)
downloadfunc-bb2769a62e687cf9939d0604f8af44a3a384b75b.tar.gz
func-bb2769a62e687cf9939d0604f8af44a3a384b75b.tar.xz
func-bb2769a62e687cf9939d0604f8af44a3a384b75b.zip
the scripts part fo commandline start and stop for the server
Diffstat (limited to 'funcweb/scripts/funcwebd')
-rw-r--r--funcweb/scripts/funcwebd9
1 files changed, 9 insertions, 0 deletions
diff --git a/funcweb/scripts/funcwebd b/funcweb/scripts/funcwebd
new file mode 100644
index 0000000..c51426a
--- /dev/null
+++ b/funcweb/scripts/funcwebd
@@ -0,0 +1,9 @@
+#!/usr/bin/python
+# EASY-INSTALL-ENTRY-SCRIPT: 'funcweb==0.1','console_scripts','start-funcweb'
+__requires__ = 'funcweb==0.1'
+import sys
+from pkg_resources import load_entry_point
+
+sys.exit(
+ load_entry_point('funcweb==0.1', 'console_scripts', 'start-funcweb')()
+ )