8 lines
292 B
Bash
8 lines
292 B
Bash
#!/usr/bin/env bash
|
|
# Build HAProxy rds-allowed from ipdeny ru.zone + static (generate only).
|
|
# Аналог mikrotik-649-ru-ipdeny-generate.sh.
|
|
set -Eeuo pipefail
|
|
|
|
SCRIPT_DIR=$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)
|
|
exec "$SCRIPT_DIR/haproxy-rds-allowed-deploy.sh" --generate-only "$@"
|