mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-08-06 22:07:19 +02:00
22 lines
343 B
Plaintext
22 lines
343 B
Plaintext
#!/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 $?
|
|
}
|