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/dev-embedded/scratchbox/files/scratchbox.rc

24 lines
410 B

#!/sbin/openrc-run
depend() {
need localmount
use logger net
}
start() {
test -x /opt/scratchbox/sbin/sbox_ctl || \
eend 1 "scratchbox init script not found. Aborting" || return 1
/opt/scratchbox/sbin/sbox_ctl start
return $?
}
stop() {
test -x /opt/scratchbox/sbin/sbox_ctl || \
eend 1 "scratchbox init script not found. Aborting" || return 1
/opt/scratchbox/sbin/sbox_ctl stop
return $?
}