Update 'ccollect'

This commit is contained in:
skybeam 2023-01-15 22:31:02 +00:00
parent cdd34a3416
commit ebded3049a
1 changed files with 2 additions and 2 deletions

View File

@ -779,7 +779,7 @@ while [ "${source_no}" -lt "${no_sources}" ]; do
if [ "${remove}" -gt 0 ]; then
_techo "Removing ${remove} backup(s)..."
if [ -z "${ls_rm_exclude}" -o ${c_interval} -le 0 ]; then
if [ -z "${ls_rm_exclude}" -o ${c_interval} -eq 0 ]; then
# shellcheck disable=SC2010
ls -${TSORT}1r | grep "^${INTERVAL}\\." | head -n "${remove}" > "${TMP}" || \
_exit_err "Listing old backups failed"
@ -796,7 +796,7 @@ while [ "${source_no}" -lt "${no_sources}" ]; do
#
# Skip backup of this source if interval is zero.
#
if [ ${c_interval} -le 0 ]; then
if [ ${c_interval} -eq 0 ]; then
_techo "Skipping backup for this interval."
exit 0
fi