use which to find binaries
This commit is contained in:
parent
35f142aa4b
commit
edd054d63e
@ -13,12 +13,18 @@ urls="$urls https://www.blocklist.de/downloads/export-ips_all.txt"
|
|||||||
|
|
||||||
blocklist_chain_name=blocklists
|
blocklist_chain_name=blocklists
|
||||||
|
|
||||||
if [ ! -x /usr/sbin/ipset ]; then
|
if [ $(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
|
||||||
|
echo "Cannot find curl"
|
||||||
|
echo "Run \"apt-get install curl\" or \"yum install curl\""
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
# create main blocklists chain
|
# create main blocklists chain
|
||||||
if ! iptables -L ${blocklist_chain_name}; then iptables -N ${blocklist_chain_name}; fi
|
if ! iptables -L ${blocklist_chain_name}; then iptables -N ${blocklist_chain_name}; fi
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user