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