Andreas Nilsen 7ea0c30f98 Papers: Fixed dependencies scripts for latest fw 2.6.x (#83)
* Fixed dependencies scripts

Signed-off-by: Andreas Nilsen <adde88@gmail.com>

* Bump to v1.8

Signed-off-by: Andreas Nilsen <adde88@gmail.com>
2019-10-25 03:11:54 +01:00

16 lines
332 B
Bash
Executable File

#!/bin/sh
testZip=$(opkg list-installed | grep -w 'zip')
testUnzip=$(opkg list-installed | grep -w 'unzip')
testNginxssl=$(opkg list-installed | grep -w 'nginx-ssl')
if [ -z "$testZip" -a -z "$testNginxssl" ]; then
echo "Not Installed";
else
if [ -z "$testUnzip" ]; then
echo "Not Installed";
else
echo "Installed";
fi
fi