delete logger

This commit is contained in:
Yasin Kaya 2021-02-09 16:31:44 +00:00
parent a47a3966f6
commit 5231bb9b4f
1 changed files with 3 additions and 14 deletions

View File

@ -2,20 +2,9 @@
source functions.sh
LOG_FOLDER="./logs"
LOG_FILE_NAME=$(date "+%Y_%m_%d_%H:%M:%S")
if [[ -e $LOG_FOLDER ]]; then
debug "Log folder already exist!"
else
sudo mkdir $LOG_FOLDER
debug "Log folder is created."
fi
for i in {1..4}; do
bash configure_modem.sh |& sudo tee -a ./logs/$LOG_FILE_NAME.log
MODEM_CONFIG=${PIPESTATUS[0]} # compatible with only bash
bash configure_modem.sh
if [[ $MODEM_CONFIG -eq 0 ]]; then
break
fi
@ -23,7 +12,7 @@ for i in {1..4}; do
done
if [[ $MODEM_CONFIG -eq 0 ]]; then
bash ppp_reconnect.sh |& sudo tee -a ./logs/$LOG_FILE_NAME.log
bash ppp_reconnect.sh
else
debug "Modem configuration is failed multiple times!"
debug "Checkout other troubleshooting steps on docs.sixfab.com."