Sync repo.

This commit is contained in:
root
2022-10-31 08:35:12 -07:00
parent e8258e87fb
commit d10d71fbef
10 changed files with 106 additions and 55 deletions
+17
View File
@@ -47,4 +47,21 @@ function cleanup_incomplete_backup {
;;
esac
done
}
function perform_cleanup_tmp {
rm -rf $CONFLUENCE_TMP
:
}
function run_in_bg {
($1) &
local PID=$!
BG_JOBS["$2"]=${PID}
debug "Started $2 (PID=${PID})"
}
function backup_start {
mkdir -p $CONFLUENCE_TMP
:
}