mirror of
https://github.com/home-assistant/operating-system.git
synced 2025-11-17 22:59:27 +00:00
* Update Buildroot to 2019-02.3 * Fix enter script * Update ova_defconfig * Fix network manager * Remove runc patches * Use same docker version * Fix build * Fix vmtools * Fix depens * Fix handling with tempfiles * Fix permission handling * Fix cp * Cleanup * Fix mounts
40 lines
447 B
Bash
40 lines
447 B
Bash
#! /bin/sh
|
|
|
|
[ -f /usr/bin/input-event-daemon ] || exit 0
|
|
|
|
start() {
|
|
printf "Starting input-event-daemon: "
|
|
input-event-daemon
|
|
echo "done"
|
|
}
|
|
|
|
|
|
stop() {
|
|
printf "Stopping input-event-daemon: "
|
|
killall input-event-daemon
|
|
echo "done"
|
|
}
|
|
|
|
restart() {
|
|
stop
|
|
start
|
|
}
|
|
|
|
# See how we were called.
|
|
case "$1" in
|
|
start)
|
|
start
|
|
;;
|
|
stop)
|
|
stop
|
|
;;
|
|
restart|reload)
|
|
restart
|
|
;;
|
|
*)
|
|
echo "Usage: $0 {start|stop|reload|restart}"
|
|
exit 1
|
|
esac
|
|
|
|
exit $?
|