Store timestamp when the gravity table was last updated successfully. This fixes https://github.com/pi-hole/AdminLTE/issues/989

Signed-off-by: DL6ER <dl6er@dl6er.de>
pull/2903/head
DL6ER 5 years ago
parent a7b44426cd
commit ca8982494b
No known key found for this signature in database
GPG Key ID: 00135ACBD90B28DD

@ -90,6 +90,16 @@ generate_gravity_database() {
chmod g+w "${piholeDir}" "${gravityDBfile}"
}
update_gravity_timestamp() {
# Update timestamp when the gravity table was last updated successfully
output=$( { sqlite3 "${gravityDBfile}" <<< "INSERT OR REPLACE INTO info (property,value) values (\"updated\",cast(strftime('%s', 'now') as int));"; } 2>&1 )
status="$?"
if [[ "${status}" -ne 0 ]]; then
echo -e "\\n ${CROSS} Unable to update gravity timestamp in database ${gravityDBfile}\\n ${output}"
fi
}
# Import domains from file and store them in the specified database table
database_table_from_file() {
# Define locals
@ -749,6 +759,8 @@ fi
gravity_generateLocalList
gravity_ShowCount
update_gravity_timestamp
gravity_Cleanup
echo ""

Loading…
Cancel
Save