Add some output to the --nuke command

Signed-off-by: Adam Warner <me@adamwarner.co.uk>
pull/3847/head
Adam Warner 4 years ago
parent bd982c6f94
commit cd8120d33f
No known key found for this signature in database
GPG Key ID: 872950F3ECF2B173

@ -231,7 +231,14 @@ Displaylist() {
} }
NukeList() { NukeList() {
sqlite3 "${gravityDBfile}" "DELETE FROM domainlist WHERE type = ${typeId};" count=$(sqlite3 "${gravityDBfile}" "SELECT COUNT(1) FROM domainlist WHERE type = ${typeId};")
listname="$(GetListnameFromTypeId "${typeId}")"
if [ "$count" -gt 0 ];then
sqlite3 "${gravityDBfile}" "DELETE FROM domainlist WHERE type = ${typeId};"
echo " ${TICK} Removed ${count} domain(s) from the ${listname}"
else
echo " ${INFO} ${listname} already empty. Nothing to do!"
fi
exit 0; exit 0;
} }

Loading…
Cancel
Save