mirror of https://github.com/bol-van/zapret/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
269 B
10 lines
269 B
#!/bin/sh
|
|
# run script specified in config
|
|
|
|
IPSET_DIR="$(dirname "$0")"
|
|
IPSET_DIR="$(cd "$IPSET_DIR"; pwd)"
|
|
|
|
[ -f "$IPSET_DIR/../config" ] && . "$IPSET_DIR/../config"
|
|
|
|
[ -z "$GETLIST" ] && GETLIST=get_ipban.sh
|
|
[ -x "$IPSET_DIR/$GETLIST" ] && exec "$IPSET_DIR/$GETLIST"
|
|
|