mirror of
https://github.com/home-assistant/operating-system.git
synced 2025-11-16 22:29:30 +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
30 lines
510 B
Bash
30 lines
510 B
Bash
#!/bin/sh
|
|
|
|
mkdir -p /var/log/supervisor
|
|
|
|
case "$1" in
|
|
start)
|
|
printf "Starting supervisord: "
|
|
start-stop-daemon -S -q -p /var/run/supervisord.pid --exec /usr/bin/supervisord
|
|
echo "done"
|
|
;;
|
|
stop)
|
|
printf "Stopping supervisord: "
|
|
start-stop-daemon -K -q -p /var/run/supervisord.pid
|
|
echo "done"
|
|
;;
|
|
restart)
|
|
"$0" stop
|
|
sleep 5
|
|
"$0" start
|
|
;;
|
|
reload)
|
|
start-stop-daemon -K -q -p /var/run/supervisord.pid -s HUP
|
|
;;
|
|
*)
|
|
echo "Usage: $0 {start|stop|restart|reload}"
|
|
exit 1
|
|
esac
|
|
|
|
exit $?
|