mirror of
https://github.com/pi-hole/pi-hole.git
synced 2024-11-24 23:23:42 +00:00
Fixed service startup error when not using lighttpd.
This commit is contained in:
parent
9322a778a7
commit
4c6e8c9c97
1 changed files with 4 additions and 1 deletions
|
@ -760,7 +760,10 @@ displayFinalMessage
|
||||||
echo -n "::: Restarting services..."
|
echo -n "::: Restarting services..."
|
||||||
# Start services
|
# Start services
|
||||||
$SUDO service dnsmasq restart
|
$SUDO service dnsmasq restart
|
||||||
|
if [[ "$webServer" = "lighttpd" ]]
|
||||||
|
then
|
||||||
$SUDO service lighttpd start
|
$SUDO service lighttpd start
|
||||||
|
fi
|
||||||
echo " done."
|
echo " done."
|
||||||
|
|
||||||
echo ":::"
|
echo ":::"
|
||||||
|
|
Loading…
Reference in a new issue