#!/bin/sh

# We use this wrapper script both for production and in-source tests; in
# the latter case B10_FROM_BUILD environment is expected to be defined.
if test -n "${B10_FROM_BUILD}"; then
	exec ${B10_FROM_BUILD}/src/bin/bind10/b10-init $*
else
	prefix=/usr
	exec_prefix=/usr
	exec /usr/libexec/bind10/b10-init $*
fi
