mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-26 20:55:19 +03:00
21 lines
342 B
Text
21 lines
342 B
Text
#!/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 $?
|
|
}
|