diff options
author | Leo <thinkabit.ukim@gmail.com> | 2019-09-09 20:06:35 -0300 |
---|---|---|
committer | Leo <thinkabit.ukim@gmail.com> | 2019-09-10 09:50:39 -0300 |
commit | c257cd108add70098957484de562477813f8743b (patch) | |
tree | 449f32cc08c4535c35c09c8dd291d9a759cde47a /community/ajaxterm/ajaxterm.initd | |
parent | 2d96c45e0a532d5af37b6425b92734091bd4682e (diff) | |
download | aports-c257cd108add70098957484de562477813f8743b.tar.bz2 aports-c257cd108add70098957484de562477813f8743b.tar.xz |
unmaintained/ajaxterm: move from community
- Python2 only
Diffstat (limited to 'community/ajaxterm/ajaxterm.initd')
-rw-r--r-- | community/ajaxterm/ajaxterm.initd | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/community/ajaxterm/ajaxterm.initd b/community/ajaxterm/ajaxterm.initd deleted file mode 100644 index 79797004e2..0000000000 --- a/community/ajaxterm/ajaxterm.initd +++ /dev/null @@ -1,21 +0,0 @@ -#!/sbin/openrc-run - -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 $? -} |