I’m trying to startup a script at boot by placing it in /etc/init.d
while true; do
python3 p1.py -c 1 -l 10 -pvo Y -pvoapi -pvosys
echo "P1 monitoring script disrupted ... Restarting script."
done
and next: sudo update-rc.d p1script defaults
but this produces a looping script at startup and makes the RPI unresponsive.
What should I change to make this work?
Barry Binnenweg