mirror of
https://github.com/pi-hole/pi-hole.git
synced 2024-11-15 02:42:58 +00:00
Fix uninstalling lighttpd when it's not installed
Signed-off-by: Andrei Picus <NiGhTTraX@users.noreply.github.com>
This commit is contained in:
parent
ffcb173a7f
commit
e9e92368b0
1 changed files with 1 additions and 2 deletions
|
@ -131,8 +131,7 @@ removeNoPurge() {
|
||||||
echo -e " ${TICK} Removed /etc/cron.d/pihole"
|
echo -e " ${TICK} Removed /etc/cron.d/pihole"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
package_check lighttpd > /dev/null
|
if package_check lighttpd > /dev/null; then
|
||||||
if [[ $? -eq 1 ]]; then
|
|
||||||
${SUDO} rm -rf /etc/lighttpd/ &> /dev/null
|
${SUDO} rm -rf /etc/lighttpd/ &> /dev/null
|
||||||
echo -e " ${TICK} Removed lighttpd"
|
echo -e " ${TICK} Removed lighttpd"
|
||||||
else
|
else
|
||||||
|
|
Loading…
Reference in a new issue