Adjustments to all scripts

This commit is contained in:
dontobi
2023-07-07 09:18:00 +02:00
parent 18654635ef
commit ae42123a2f
9 changed files with 206 additions and 205 deletions

View File

@@ -2,16 +2,16 @@
if [ -e /usr/local/lib64 ]
then
echo '[setup_zwave.sh] Openzwave is already installed. Nothing to do here.'
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... '
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.'
echo "Done."
fi
exit 0