From ad9f62aaf02cee8e69f1278844aa9a4db145d0c1 Mon Sep 17 00:00:00 2001 From: saeedjohar Date: Sun, 13 Oct 2019 22:14:14 +0300 Subject: [PATCH] 3G,4G/LTE BASE HAT installation added --- ppp_installer/install.sh | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/ppp_installer/install.sh b/ppp_installer/install.sh index a172bd2..4ae67e0 100755 --- a/ppp_installer/install.sh +++ b/ppp_installer/install.sh @@ -11,6 +11,8 @@ echo "${YELLOW}2: 3G, 4G/LTE Base Shield${SET}" echo "${YELLOW}3: Cellular IoT App Shield${SET}" echo "${YELLOW}4: Cellular IoT HAT${SET}" echo "${YELLOW}5: Tracker HAT${SET}" +echo "${YELLOW}6: 3G/4G Base HAT${SET}" + read shield_hat case $shield_hat in @@ -18,7 +20,8 @@ case $shield_hat in 2) echo "${YELLOW}You chose Base Shield${SET}";; 3) echo "${YELLOW}You chose CellularIoT Shield${SET}";; 4) echo "${YELLOW}You chose CellularIoT HAT${SET}";; - 5) echo "${YELLOW}You chose Tracker HAT${SET}";; + 5) echo "${YELLOW}You chose Tracker HAT${SET}";; + 6) echo "${YELLOW}You chose 3G/4G Base HAT${SET}";; *) echo "${RED}Wrong Selection, exiting${SET}"; exit 1; esac @@ -167,12 +170,15 @@ do wget --no-check-certificate https://raw.githubusercontent.com/sixfab/Sixfab_PPP_Installer/master/ppp_installer/reconnect_tracker -O reconnect.sh + elif [ $shield_hat -eq 6 ]; then + + wget --no-check-certificate https://raw.githubusercontent.com/sixfab/Sixfab_PPP_Installer/master/ppp_installer/reconnect_basehat -O reconnect.sh + fi mv reconnect.sh /usr/src/ mv reconnect.service /etc/systemd/system/ - systemctl daemon-reload systemctl enable reconnect.service