docker-pi-hole/s6/debian-root/etc/cont-init.d/20-start.sh

18 lines
344 B
Bash

#!/usr/bin/with-contenv bash
set -e
bashCmd='bash -e'
if [ "${PH_VERBOSE:-0}" -gt 0 ] ; then
set -x ;
bashCmd='bash -e -x'
fi
# Start dnsmasq for validate_env and gravity.sh
pihole-FTL
$bashCmd /start.sh
gravity.sh
# Kill dnsmasq because s6 won't like it if it's running when s6 services start
kill -9 $(pgrep pihole-FTL) || true