5 lines
132 B
Bash
Executable file
5 lines
132 B
Bash
Executable file
#!/usr/bin/env bash
|
|
set -o errexit -o nounset
|
|
|
|
RUNDIR="$(dirname "$0")"
|
|
cd "$RUNDIR" && ./run.sh --config configs/unbound.yaml "$@"
|