mouse/src

Blob: rootfs/etc/init.d/mouse_ready

Raw · Blame

#!/sbin/openrc-run

description="MOUSE required C1 proof service"

start() {
	ebegin "Marking the MOUSE base ready"
	checkpath --file /run/mouse-ready.started
	eend $?
}

stop() {
	ebegin "Stopping the MOUSE readiness service"
	rm -f /run/mouse-ready.started
	eend $?
}