You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/net-misc/zerotier/files/zerotier.init

23 lines
437 B

#!/sbin/openrc-run
ZEROTIERONE_PIDFILE="/var/run/${SVCNAME}.pid"
PN="zerotier-one"
PN_PATH="/usr/sbin/${PN}"
depend() {
need net
}
start() {
ebegin "Starting ${PN}"
start-stop-daemon --start \
--exec "${PN_PATH}" --make-pidfile --pidfile "${ZEROTIERONE_PIDFILE}" --background
eend $?
}
stop() {
ebegin "Stopping ${PN}"
start-stop-daemon --stop --quiet --pidfile "${ZEROTIERONE_PIDFILE}"
eend $?
}