test for no binary

This commit is contained in:
Pawel Krawczyk 2014-10-02 11:11:35 +01:00
parent edd054d63e
commit f7c09e47af

View File

@ -13,13 +13,13 @@ urls="$urls https://www.blocklist.de/downloads/export-ips_all.txt"
blocklist_chain_name=blocklists blocklist_chain_name=blocklists
if [ $(which ipset) ]; then if [ -z "$(which ipset)" ]; then
echo "Cannot find ipset" echo "Cannot find ipset"
echo "Run \"apt-get install ipset\" or \"yum install ipset\"" echo "Run \"apt-get install ipset\" or \"yum install ipset\""
exit 1 exit 1
fi fi
if [ $(which curl) ]; then if [ -z "$(which curl)" ]; then
echo "Cannot find curl" echo "Cannot find curl"
echo "Run \"apt-get install curl\" or \"yum install curl\"" echo "Run \"apt-get install curl\" or \"yum install curl\""
exit 1 exit 1