mirror of
https://anongit.gentoo.org/git/repo/gentoo.git
synced 2025-07-23 07:29:19 +02:00
Signed-off-by: Matoro Mahri <matoro_gentoo@matoro.tk> Signed-off-by: Mike Gilbert <floppym@gentoo.org>
14 lines
268 B
Text
14 lines
268 B
Text
#!/sbin/openrc-run
|
|
|
|
start() {
|
|
ebegin "Starting Regina stack"
|
|
start-stop-daemon --start --pidfile /var/run/rxstack.pid \
|
|
--exec /usr/bin/rxstack -- -d
|
|
eend $?
|
|
}
|
|
|
|
stop() {
|
|
ebegin "Stopping Regina stack"
|
|
start-stop-daemon --stop --exec /usr/bin/rxstack
|
|
eend $?
|
|
}
|