rewrite get incomplete backups code

Signed-off-by: Nico Schottelius <nico@kr.ethz.ch>
This commit is contained in:
Nico Schottelius 2011-01-15 02:35:49 +01:00
parent 05de81e0f0
commit 4675bf864c
1 changed files with 6 additions and 5 deletions

View File

@ -425,12 +425,13 @@ while [ "${source_no}" -lt "${no_sources}" ]; do
#
# Check incomplete backups (needs echo to remove newlines)
#
ls -1 | grep "${CMARKER}\$" > "${TMP}" || \
_exit_err "Cannot list incomplete files"
ls -1 | grep "${CMARKER}\$" > "${TMP}"; ret=$?
_techo "Incomplete backups: $(echo $(cat "${TMP}"))"
if [ -f "${c_delete_incomplete}" ]; then
delete_from_file "${TMP}" "${CMARKER}"
if [ "$ret" -eq 0 ]; then
_techo "Incomplete backups: $(echo $(cat "${TMP}"))"
if [ -f "${c_delete_incomplete}" ]; then
delete_from_file "${TMP}" "${CMARKER}"
fi
fi
#