pass argument from pihole command to gravity for -f check

This commit is contained in:
Promofaux 2016-08-19 23:06:56 +01:00
parent 475d016029
commit 6796b8bdad
2 changed files with 3 additions and 3 deletions

View file

@ -344,14 +344,14 @@ function gravity_reload() {
for var in "$@"
do
case "$var" in
"-f" | "--force" ) force=true;;
"-f" | "--force" ) forceGrav=true;;
"-h" | "--help" ) helpFunc;;
esac
done
#Overwrite adlists.default from /etc/.pihole in case any changes have been made. Changes should be saved in /etc/adlists.list
if [[ ${force} == true ]]; then
if [[ ${forceGrav} == true ]]; then
echo -n "::: Deleting exising list cache..."
${SUDO} rm /etc/pihole/list.*
echo " done!"

2
pihole
View file

@ -53,7 +53,7 @@ function updateDashboardFunc {
}
function updateGravityFunc {
$SUDO /opt/pihole/gravity.sh
$SUDO /opt/pihole/gravity.sh "$@"
exit 1
}