From ac3818a8cd5a8f1590d3b0e8aad7127e9c1d902c Mon Sep 17 00:00:00 2001 From: Markus Storm Date: Fri, 4 Oct 2024 07:00:20 +0200 Subject: [PATCH] homegear repo install as per official instructions; removed wiringPi Signed-off-by: Markus Storm --- functions/packages.bash | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/functions/packages.bash b/functions/packages.bash index 807615fb6..fd6abc16f 100644 --- a/functions/packages.bash +++ b/functions/packages.bash @@ -237,11 +237,11 @@ homegear_setup() { fi echo -n "$(timestamp) [openHABian] Installing Homegear... " if ! cond_redirect apt-get update; then echo "FAILED (update apt lists)"; return 1; fi - if is_raspios; then - wget -O "$temp" https://github.com/WiringPi/WiringPi/releases/download/2.61-1/wiringpi-2.61-1-armhf.deb - dpkg -i "$temp" - rm -f "$temp" - fi +# if is_raspios; then +# wget -O "$temp" https://github.com/WiringPi/WiringPi/releases/download/2.61-1/wiringpi-2.61-1-armhf.deb +# dpkg -i "$temp" +# rm -f "$temp" +# fi if cond_redirect apt-get install --yes -o DPkg::Lock::Timeout="$APTTIMEOUT" homegear homegear-homematicbidcos homegear-homematicwired homegear-max homegear-management; then echo "OK"; else echo "FAILED"; return 1; fi echo -n "$(timestamp) [openHABian] Setting up Homegear user account permissions... " if ! cond_redirect adduser "${username:-openhabian}" homegear; then echo "FAILED"; return 1; fi