Set file permisions on /etc/pihole

Ensures file permisions on $piholeDir before reload/restart of dnsmasq
This commit is contained in:
Daniel Fayette 2016-02-10 15:07:31 -06:00
parent 255706e173
commit 73bfbba5f7

View file

@ -321,6 +321,8 @@ function gravity_reload() {
echo -n "::: Refresh lists in dnsmasq..."
dnsmasqPid=$(pidof dnsmasq)
find "$piholeDir" -type f -exec $SUDO chmod 666 {} \; & spinner $!
if [[ $dnsmasqPid ]]; then
# service already running - reload config
$SUDO kill -HUP $dnsmasqPid & spinner $!