mirror of
https://github.com/pi-hole/pi-hole.git
synced 2024-11-24 15:13: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..."
|
||||
# Start services
|
||||
$SUDO service dnsmasq restart
|
||||
$SUDO service lighttpd start
|
||||
if [[ "$webServer" = "lighttpd" ]]
|
||||
then
|
||||
$SUDO service lighttpd start
|
||||
fi
|
||||
echo " done."
|
||||
|
||||
echo ":::"
|
||||
|
|
Loading…
Reference in a new issue