small fixes

This commit is contained in:
buanet
2019-10-23 11:50:31 +02:00
parent 7b0f8f5ba9
commit 90458ae6b7
9 changed files with 30 additions and 36 deletions

View File

@@ -4,6 +4,8 @@ echo "Checking openzwave installation state..."
if [ -f /usr/local/lib64 ]
then
echo "Openzwave is already installed..."
else
echo "Openzwave is NOT installed. Going to install it now..."
cd /opt
curl -L -O http://old.openzwave.com/downloads/openzwave-1.6.945.tar.gz
@@ -11,9 +13,7 @@ then
cd openzwave-1.6.945 && make 2>&1 /dev/null && make install 2>&1 /dev/null
ldconfig /usr/local/lib64
cd /opt/iobroker
echo "Openzwave is now installed..."
else
echo "Openzwave is already installed..."
# echo "Openzwave is now installed..."
fi
exit 0