mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
34 lines
546 B
Text
34 lines
546 B
Text
|
#!/bin/bash
|
||
|
|
||
|
. /etc/rc.conf
|
||
|
. /etc/rc.d/functions
|
||
|
[ -f /etc/conf.d/mouse-emul ] && . /etc/conf.d/mouse-emul
|
||
|
|
||
|
function call_mouseemul() {
|
||
|
echo "foo"
|
||
|
}
|
||
|
|
||
|
case "$1" in
|
||
|
start)
|
||
|
stat_busy "Starting mouse-emul"
|
||
|
/usr/local/bin/mouse-emul $MOUSE_DAEMON_ARGS&
|
||
|
add_daemon mouse-emul
|
||
|
stat_done
|
||
|
;;
|
||
|
|
||
|
stop)
|
||
|
stat_busy "Stopping mouse-emul"
|
||
|
killall mouse-emul
|
||
|
rm_daemon mouse-emul
|
||
|
stat_done
|
||
|
;;
|
||
|
restart)
|
||
|
$0 stop
|
||
|
sleep 1
|
||
|
$0 start
|
||
|
;;
|
||
|
*)
|
||
|
echo "usage: $0 {start|stop|restart}"
|
||
|
esac
|
||
|
exit 0
|