1
0
Fork 0
This repository has been archived on 2024-06-28. You can view files and clone it, but cannot push or open issues or pull requests.
Umweltdatenmessung/etc_init.d/display
Findus23 44e49a1690 Autostart-Dateien verbessert
* Log
* Einrückungen
2014-02-15 13:40:22 +01:00

20 lines
314 B
Bash
Executable file

#! /bin/sh
# /etc/init.d/display
case "$1" in
start)
echo "Display wird gestartet"
python /home/pi/Temperaturmessung/display.py > /home/pi/log/display 2>&1 &
;;
stop)
echo "Display wird beendet"
killall python
;;
*)
echo "Verwendung: /etc/init.d/display {start|stop}"
exit 1
;;
esac
exit 0