banip: update 0.8.9-2
* fix a corner case backup issue with empty feed downloads Signed-off-by: Dirk Brenken <dev@brenken.org>
This commit is contained in:
parent
68cdc3952d
commit
137045faa9
2 changed files with 6 additions and 4 deletions
|
@ -6,7 +6,7 @@ include $(TOPDIR)/rules.mk
|
||||||
|
|
||||||
PKG_NAME:=banip
|
PKG_NAME:=banip
|
||||||
PKG_VERSION:=0.8.9
|
PKG_VERSION:=0.8.9
|
||||||
PKG_RELEASE:=1
|
PKG_RELEASE:=2
|
||||||
PKG_LICENSE:=GPL-3.0-or-later
|
PKG_LICENSE:=GPL-3.0-or-later
|
||||||
PKG_MAINTAINER:=Dirk Brenken <dev@brenken.org>
|
PKG_MAINTAINER:=Dirk Brenken <dev@brenken.org>
|
||||||
|
|
||||||
|
|
|
@ -952,10 +952,12 @@ f_down() {
|
||||||
# backup feeds
|
# backup feeds
|
||||||
#
|
#
|
||||||
f_backup() {
|
f_backup() {
|
||||||
local backup_rc feed="${1}" feed_file="${2}"
|
local backup_rc="4" feed="${1}" feed_file="${2}"
|
||||||
|
|
||||||
gzip -cf "${feed_file}" >"${ban_backupdir}/banIP.${feed}.gz"
|
if [ -s "${feed_file}" ]; then
|
||||||
backup_rc="${?}"
|
gzip -cf "${feed_file}" >"${ban_backupdir}/banIP.${feed}.gz"
|
||||||
|
backup_rc="${?}"
|
||||||
|
fi
|
||||||
|
|
||||||
f_log "debug" "f_backup ::: feed: ${feed}, file: banIP.${feed}.gz, rc: ${backup_rc}"
|
f_log "debug" "f_backup ::: feed: ${feed}, file: banIP.${feed}.gz, rc: ${backup_rc}"
|
||||||
return "${backup_rc}"
|
return "${backup_rc}"
|
||||||
|
|
Loading…
Reference in a new issue