testing with debian 12

This commit is contained in:
buanet
2023-07-31 17:43:01 +02:00
parent 9c9c5c1ffd
commit 9fc074611f
13 changed files with 1687 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
#!/bin/bash
if [ -e /usr/local/lib64 ]
then
echo "[setup_zwave.sh] Openzwave is already installed. Nothing to do here."
else
echo -n "[setup_zwave.sh] Openzwave is NOT installed. Going to install it now... "
cd /opt || exit
curl -s -L -O http://old.openzwave.com/downloads/openzwave-1.6.1007.tar.gz
tar -xf openzwave-1.6.1007.tar.gz && rm openzwave-1.6.1007.tar.gz
cd openzwave-1.6.1007 && make > /dev/null 2>&1 && make install > /dev/null 2>&1
ldconfig /usr/local/lib64
cd /opt/iobroker || exit
echo "Done."
fi
exit 0