rc.local geht nicht?
hallo, bei meinem raspberrypi habe ich versucht ngrok und einen discord bot nach den booten zu starten aber es startet nicht
#!/bin/sh -e
#
# rc.local
#
# Print the IP address
_IP=$(hostname -I) || true
if [ "$_IP" ]; then
printf "My IP address is %s\n" "$_IP"
fi
/home/pi/./ngrok tcp 22 --log=stdout > /home/pi/ngrok.log &
python3 /home/bot/Berrybot.py
exit 0