aboutsummaryrefslogtreecommitdiffstats
path: root/www/py-webware/files/webkit.sh.tmpl
diff options
context:
space:
mode:
Diffstat (limited to 'www/py-webware/files/webkit.sh.tmpl')
-rw-r--r--www/py-webware/files/webkit.sh.tmpl38
1 files changed, 0 insertions, 38 deletions
diff --git a/www/py-webware/files/webkit.sh.tmpl b/www/py-webware/files/webkit.sh.tmpl
deleted file mode 100644
index ea41fb4e16a..00000000000
--- a/www/py-webware/files/webkit.sh.tmpl
+++ /dev/null
@@ -1,38 +0,0 @@
-#!/bin/sh
-
-# Warning
-# -------
-#
-# Please edit the files in
-# %%WEBKIT_HOME_DIR%%/Configs/
-# to suit your needs. Using them as they are may cause problems.
-
-# This file is adapted from databases/postgresql7/files/pgsql.sh.tmpl
-#
-# $FreeBSD$
-
-WEBKIT_HOME_DIR=%%WEBKIT_HOME_DIR%%
-
-case $1 in
-start)
- [ -x ${WEBKIT_HOME_DIR}/AppServer ] && {
- su -l webware -c "exec ${WEBKIT_HOME_DIR}/AppServer" \
- >/dev/null 2>&1 &
- echo -n ' webkit'
- }
- ;;
-
-stop)
- [ -f ${WEBKIT_HOME_DIR}/appserverpid.txt ] && {
- su -l webware -c \
- "/bin/kill `cat ${WEBKIT_HOME_DIR}/appserverpid.txt`" \
- >/dev/null 2>&1
- echo -n ' webkit'
- }
- ;;
-
-*)
- echo "usage: `basename $0` {start|stop}" >&2
- exit 1
- ;;
-esac