#!/usr/bin/openrc-run
|
|
|
|
|
|
depend() {
|
|
need net
|
|
need localmount
|
|
}
|
|
|
|
start() {
|
|
ebegin "Starting quark"
|
|
start-stop-daemon --background --start --exec /usr/local/bin/quark -- -p 9999 -d /home/yigit/.dotfiles/browser/startpage/dist -h 127.0.0.1
|
|
eend $?
|
|
}
|
|
|
|
stop() {
|
|
ebegin "Stopping myApp"
|
|
eend $?
|
|
}
|
|
|