pass argument from pihole command to gravity for -f check

pull/625/head
Promofaux 8 years ago
parent 475d016029
commit 6796b8bdad

@ -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!"

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

Loading…
Cancel
Save