Update mm-scripts.sh

This commit is contained in:
2022-06-04 17:04:03 -05:00
parent 2dd0004dde
commit 4c076c97ae

View File

@@ -102,9 +102,12 @@ MMSTART(){
checked=""
fi
if [ "${checked}" == "false" ] && [ ${cc} -eq 10 ]; then
echo -e "${idsCL[Red]}Could not confirm default routes, shutting down!${idsCL[Default]}"
echo "$(date) - Could not confirm default routes, shutting down" >> $logfile
echo -e "${idsCL[Red]}Could not confirm default routes, restarting system!${idsCL[Default]}"
echo "$(date) - Could not confirm default routes, restarting system" >> $logfile
MMSTOP
sleep 1m
"${VPN_START[@]}"
rm -f /opt/mm.stop
exit 1
fi
((cc=${cc}+1))
@@ -119,9 +122,12 @@ MMSTART(){
if [ "${scip}" != "${mmip}" ]; then
echo -e "${idsCL[Green]} done${idsCL[Default]}"
else
echo -e "${idsCL[Red]}Traffic is not routing through VPN!${idsCL[Default]}"
echo "$(date) - Traffic is not routing through VPN, shutting down" >> $logfile
echo -e "${idsCL[Red]}Traffic is not routing through VPN, restarting system!${idsCL[Default]}"
echo "$(date) - Traffic is not routing through VPN, restarting system" >> $logfile
MMSTOP
sleep 1m
"${VPN_START[@]}"
rm -f /opt/mm.stop
exit 1
fi