Apply suggestions from code review

Co-authored-by: Dan Schaper <dan.schaper@pi-hole.net>
pull/4288/head
DL6ER 2 years ago committed by GitHub
parent b06efb6ab7
commit 7167e6d5e4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -851,6 +851,7 @@ gravity_Cleanup() {
database_recovery() {
local result
local str="Checking integrity of existing gravity database"
local option="${1}"
echo -ne " ${INFO} ${str}..."
if result="$(pihole-FTL sqlite3 "${gravityDBfile}" "PRAGMA integrity_check" 2>&1)"; then
echo -e "${OVER} ${TICK} ${str} - no errors found"
@ -859,7 +860,7 @@ database_recovery() {
echo -ne " ${INFO} ${str}..."
if result="$(pihole-FTL sqlite3 "${gravityDBfile}" "PRAGMA foreign_key_check" 2>&1)"; then
echo -e "${OVER} ${TICK} ${str} - no errors found"
if [[ $1 != "force" ]]; then
if [[ "${option}" != "force" ]]; then
return
fi
else

Loading…
Cancel
Save