#!/bin/sh

CONF=/etc/pdnsd.conf

if grep "[\t\s]*status_ctl\s*=\s*on;" $CONF > /dev/null 2>&1; then
	pdnsd-ctl server all up
fi

exit 0
