From aa16dae4f6e9a8b10256cbf315d9f8b84d4cbe38 Mon Sep 17 00:00:00 2001 From: Stefan A Date: Thu, 4 Jun 2020 11:12:42 +0200 Subject: [PATCH] Make sure the gpio tool is installed My freshly installed raspbian lacked the gpio tool used in the reconnect script. Please also include this installation (part of the wiringpi package) --- ppp_installer/install.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ppp_installer/install.sh b/ppp_installer/install.sh index aa6ab3f..5483f5f 100755 --- a/ppp_installer/install.sh +++ b/ppp_installer/install.sh @@ -80,8 +80,8 @@ fi # esac #done #' -echo "${YELLOW}ppp install${SET}" -apt-get install ppp +echo "${YELLOW}ppp and wiringpi (gpio tool) install${SET}" +apt-get install ppp wiringpi echo "${YELLOW}What is your carrier APN?${SET}" read carrierapn @@ -191,4 +191,4 @@ do done read -p "Press ENTER key to reboot" ENTER -reboot \ No newline at end of file +reboot