Fix post-start check when unbound.conf has moved.

Reported by:	phk@
MFC after:	1 week
This commit is contained in:
Dag-Erling Smørgrav 2021-03-10 14:18:59 +00:00
parent e5f02c140b
commit 409388cfac

View File

@ -106,7 +106,7 @@ local_unbound_poststart()
local retry=5
echo -n "Waiting for nameserver to start..."
until "${command}-control" status | grep -q "is running" ; do
until "${command}-control" -c "${local_unbound_config}" status | grep -q "is running" ; do
if [ $((retry -= 1)) -eq 0 ] ; then
echo " giving up"
return 1