Fill comment field with NULL (default) instead of empty string and use a variable for the timestamp instead of periodically calling date

Signed-off-by: DL6ER <dl6er@dl6er.de>
pull/2611/head
DL6ER 5 years ago
parent f9250d91a5
commit 61840edb30
No known key found for this signature in database
GPG Key ID: FB60471F0575164A

@ -118,12 +118,14 @@ gravity_store_in_database() {
local tmpFile
tmpFile="$(mktemp -p "/tmp" --suffix=".gravity")"
local timestamp
timestamp="$(date --utc +'%s')"
if [ "$table" == "whitelist" ] || [ "$table" == "blacklist" ] || [ "$table" == "regex" ]; then
# Apply format for white-, blacklist, and regex tables
# Read file line by line
grep -v '^ *#' < "${source}" | while IFS= read -r domain
do
echo "\"${domain}\",1,$(date --utc +'%s')," >> "${tmpFile}"
echo "\"${domain}\",1,${timestamp}" >> "${tmpFile}"
done
inputfile="${tmpFile}"
else

Loading…
Cancel
Save