mirror of
https://github.com/pi-hole/pi-hole.git
synced 2024-11-15 10:43:55 +00:00
It wouldn't be me if there weren't loads of commits for simple mistakes.
This commit is contained in:
parent
6796b8bdad
commit
c0430a2248
1 changed files with 11 additions and 11 deletions
22
pihole
22
pihole
|
@ -27,55 +27,55 @@ fi
|
||||||
|
|
||||||
function whitelistFunc {
|
function whitelistFunc {
|
||||||
shift
|
shift
|
||||||
$SUDO /opt/pihole/whitelist.sh "$@"
|
${SUDO} /opt/pihole/whitelist.sh "$@"
|
||||||
exit 1
|
exit 1
|
||||||
}
|
}
|
||||||
|
|
||||||
function blacklistFunc {
|
function blacklistFunc {
|
||||||
shift
|
shift
|
||||||
$SUDO /opt/pihole/blacklist.sh "$@"
|
${SUDO} /opt/pihole/blacklist.sh "$@"
|
||||||
exit 1
|
exit 1
|
||||||
}
|
}
|
||||||
|
|
||||||
function debugFunc {
|
function debugFunc {
|
||||||
$SUDO /opt/pihole/piholeDebug.sh
|
${SUDO} /opt/pihole/piholeDebug.sh
|
||||||
exit 1
|
exit 1
|
||||||
}
|
}
|
||||||
|
|
||||||
function flushFunc {
|
function flushFunc {
|
||||||
$SUDO /opt/pihole/piholeLogFlush.sh
|
${SUDO} /opt/pihole/piholeLogFlush.sh
|
||||||
exit 1
|
exit 1
|
||||||
}
|
}
|
||||||
|
|
||||||
function updateDashboardFunc {
|
function updateDashboardFunc {
|
||||||
$SUDO /opt/pihole/updateDashboard.sh
|
${SUDO} /opt/pihole/updateDashboard.sh
|
||||||
exit 1
|
exit 1
|
||||||
}
|
}
|
||||||
|
|
||||||
function updateGravityFunc {
|
function updateGravityFunc {
|
||||||
$SUDO /opt/pihole/gravity.sh "$@"
|
${SUDO} /opt/pihole/gravity.sh "$@"
|
||||||
exit 1
|
exit 1
|
||||||
}
|
}
|
||||||
|
|
||||||
function setupLCDFunction {
|
function setupLCDFunction {
|
||||||
$SUDO /opt/pihole/setupLCD.sh
|
${SUDO} /opt/pihole/setupLCD.sh
|
||||||
exit 1
|
exit 1
|
||||||
}
|
}
|
||||||
|
|
||||||
function chronometerFunc {
|
function chronometerFunc {
|
||||||
shift
|
shift
|
||||||
$SUDO /opt/pihole/chronometer.sh "$@"
|
${SUDO} /opt/pihole/chronometer.sh "$@"
|
||||||
exit 1
|
exit 1
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
function uninstallFunc {
|
function uninstallFunc {
|
||||||
$SUDO /opt/pihole/uninstall.sh
|
${SUDO} /opt/pihole/uninstall.sh
|
||||||
exit 1
|
exit 1
|
||||||
}
|
}
|
||||||
|
|
||||||
function versionFunc {
|
function versionFunc {
|
||||||
$SUDO /opt/pihole/version.sh
|
${SUDO} /opt/pihole/version.sh
|
||||||
exit 1
|
exit 1
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -111,7 +111,7 @@ case "$1" in
|
||||||
"-d" | "debug" ) debugFunc;;
|
"-d" | "debug" ) debugFunc;;
|
||||||
"-f" | "flush" ) flushFunc;;
|
"-f" | "flush" ) flushFunc;;
|
||||||
"-u" | "updateDashboard" ) updateDashboardFunc;;
|
"-u" | "updateDashboard" ) updateDashboardFunc;;
|
||||||
"-g" | "updateGravity" ) updateGravityFunc;;
|
"-g" | "updateGravity" ) updateGravityFunc "$@";;
|
||||||
"-s" | "setupLCD" ) setupLCDFunction;;
|
"-s" | "setupLCD" ) setupLCDFunction;;
|
||||||
"-c" | "chronometer" ) chronometerFunc "$@";;
|
"-c" | "chronometer" ) chronometerFunc "$@";;
|
||||||
"-h" | "help" ) helpFunc;;
|
"-h" | "help" ) helpFunc;;
|
||||||
|
|
Loading…
Reference in a new issue