Add modem restartscript

This commit is contained in:
Fliegerjohn 2023-08-22 18:45:53 +02:00
parent 0542bf16e7
commit f122b19c7a

23
restartmodem.sh Normal file
View file

@ -0,0 +1,23 @@
#!/bin/bash
#
## Restarting Interface in case of faulture
#
#
## Variables
#
interface="LTE"
#
## Main
#
# Restart Modem
ifdown $interface
sleep 5
ifup $interface
# Log the time
echo "Interface $interface restarted at $(date)" >> /var/log/restartmodem.sh