diff options
Diffstat (limited to 'testing/ajaxterm/ajaxterm.initd')
-rw-r--r-- | testing/ajaxterm/ajaxterm.initd | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/testing/ajaxterm/ajaxterm.initd b/testing/ajaxterm/ajaxterm.initd deleted file mode 100644 index f09b9b429f..0000000000 --- a/testing/ajaxterm/ajaxterm.initd +++ /dev/null @@ -1,21 +0,0 @@ -#!/sbin/runscript - -depend() -{ - need net -} - -start() -{ - ebegin "Starting AjaxTerm on port $PORT" - start-stop-daemon --start --pidfile $PIDFILE --exec $DAEMON -- --daemon --port=$PORT --uid=nobody - eend $? -} - -stop() -{ - ebegin "Stopping AjaxTerm" - start-stop-daemon --stop --pidfile $PIDFILE - rm -f $PIDFILE - eend $? -} |