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

21 lines
314 B
Text
Raw Normal View History

2014-02-14 19:51:10 +01:00
#! /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
;;
2014-02-14 19:51:10 +01:00
esac
exit 0