loperOverlay/net-vpn/snx-rs/files/init.d.snx-rs
2025-03-30 14:05:43 +03:00

18 lines
314 B
Text
Executable file

#!/sbin/openrc-run
depend() {
need net
use dns logger
}
start() {
start-stop-daemon --start --background \
--make-pidfile --pidfile /var/run/snx-rs.pid \
--exec /usr/bin/snx-rs -- ${SNX_RS_OPTS}
eend $?
}
stop() {
start-stop-daemon --stop --quiet --pidfile /var/run/snx-rs.pid
eend $?
}