mirror of
https://github.com/pi-hole/pi-hole.git
synced 2024-12-24 13:50:17 +00:00
about time we exit 0'd
This commit is contained in:
parent
5e883239f9
commit
9352ba6e4a
1 changed files with 13 additions and 13 deletions
26
pihole
26
pihole
|
@ -25,23 +25,23 @@ fi
|
|||
function whitelistFunc {
|
||||
shift
|
||||
/opt/pihole/whitelist.sh "$@"
|
||||
exit 1
|
||||
exit 0
|
||||
}
|
||||
|
||||
function blacklistFunc {
|
||||
shift
|
||||
/opt/pihole/blacklist.sh "$@"
|
||||
exit 1
|
||||
exit 0
|
||||
}
|
||||
|
||||
function debugFunc {
|
||||
/opt/pihole/piholeDebug.sh
|
||||
exit 1
|
||||
exit 0
|
||||
}
|
||||
|
||||
function flushFunc {
|
||||
/opt/pihole/piholeLogFlush.sh
|
||||
exit 1
|
||||
exit 0
|
||||
}
|
||||
|
||||
|
||||
|
@ -110,22 +110,22 @@ function updatePiholeFunc {
|
|||
echo "::: See https://changes.pi-hole.net for details"
|
||||
fi
|
||||
|
||||
exit 1
|
||||
exit 0
|
||||
}
|
||||
|
||||
function reconfigurePiholeFunc {
|
||||
/etc/.pihole/automated\ install/basic-install.sh
|
||||
exit 1;
|
||||
exit 0;
|
||||
}
|
||||
|
||||
function updateGravityFunc {
|
||||
/opt/pihole/gravity.sh "$@"
|
||||
exit 1
|
||||
exit 0
|
||||
}
|
||||
|
||||
function setupLCDFunction {
|
||||
/opt/pihole/setupLCD.sh
|
||||
exit 1
|
||||
exit 0
|
||||
}
|
||||
|
||||
function queryFunc {
|
||||
|
@ -139,24 +139,24 @@ function queryFunc {
|
|||
fi
|
||||
echo ""
|
||||
done
|
||||
exit 1
|
||||
exit 0
|
||||
}
|
||||
|
||||
function chronometerFunc {
|
||||
shift
|
||||
/opt/pihole/chronometer.sh "$@"
|
||||
exit 1
|
||||
exit 0
|
||||
}
|
||||
|
||||
|
||||
function uninstallFunc {
|
||||
/opt/pihole/uninstall.sh
|
||||
exit 1
|
||||
exit 0
|
||||
}
|
||||
|
||||
function versionFunc {
|
||||
/opt/pihole/version.sh
|
||||
exit 1
|
||||
exit 0
|
||||
}
|
||||
|
||||
function helpFunc {
|
||||
|
@ -178,7 +178,7 @@ function helpFunc {
|
|||
echo "::: -v, version Show current versions"
|
||||
echo "::: -q, query Query the adlists for a specific domain"
|
||||
echo "::: uninstall Uninstall Pi-Hole from your system :(!"
|
||||
exit 1
|
||||
exit 0
|
||||
}
|
||||
|
||||
if [[ $# = 0 ]]; then
|
||||
|
|
Loading…
Reference in a new issue