7 lines
259 B
Bash
Executable File
7 lines
259 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
ROOT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")/.." && pwd)"
|
|
echo "Hinweis: setup-local-germany.sh ist veraltet; richte Deutschland und Niederlande gemeinsam ein." >&2
|
|
exec "$ROOT_DIR/scripts/setup-local-routing.sh" "$@"
|