From f25f643ae0995e5b784e2c2e36c25203135e8e1f Mon Sep 17 00:00:00 2001 From: CedarLUG <19336442+cedarlug@users.noreply.github.com> Date: Sun, 17 Dec 2017 14:31:41 -0600 Subject: [PATCH] Replacing realpath dependency and idosyncracies. --- lgsm/functions/command_backup.sh | 32 +++++++++++++++++++++++++++++++- 1 file changed, 31 insertions(+), 1 deletion(-) diff --git a/lgsm/functions/command_backup.sh b/lgsm/functions/command_backup.sh index 4225a2c5e..5dd066109 100644 --- a/lgsm/functions/command_backup.sh +++ b/lgsm/functions/command_backup.sh @@ -112,7 +112,8 @@ fn_backup_compression(){ sleep 2 fn_print_dots "Backup (${rootdirduexbackup}) ${backupname}.tar.gz, in progress..." fn_script_log_info "backup ${rootdirduexbackup} ${backupname}.tar.gz, in progress" - excludedir=$(realpath --relative-to="${rootdir}" "${backupdir}") + excludedir=fn_backup_relpath + # CHECK THAT excludedir isn't empty. Sanity check here -CedarLUG tar -czf "${backupdir}/${backupname}.tar.gz" -C "${rootdir}" --exclude "${excludedir}" ./* local exitcode=$? if [ ${exitcode} -ne 0 ]; then @@ -180,6 +181,35 @@ fn_backup_prune(){ fi } +fn_backup_relpath() { + # Written by CedarLUG as a "realpath --relative-to" alternative in bash + declare -a rdirtoks=($(readlink -f "${rootdir}" | sed "s/\// /g")) + # CHECK THAT the array is populated correctly. Sanity check here -CedarLUG + declare -a bdirtoks=($(readlink -f "${backupdir}" | sed "s/\// /g")) + # CHECK THAT the array is populated correctly. Sanity check here -CedarLUG + + for ((base=0; $base<${#rdirtoks[@]}; base++)) ; + do + [[ "${rdirtoks[$base]}" != "${bdirtoks[$base]}" ]] && break + done + + for ((x=${base};$x<${#rdirtoks[@]};x++)) + do + echo -n "../" + done + + for ((x=${base};$x<$(( ${#bdirtoks[@]} - 1 ));x++)) + do + echo -n "${bdirtoks[$x]}/" + done + + if (( "$base" < "${#bdirtoks[@]}" )) ; then + echo ${bdirtoks[ $(( ${#bdirtoks[@]} - 1)) ]} + else + echo + fi +} + # Restart the server if it was stopped for the backup fn_backup_start_server(){ if [ "${serverstopped}" == "yes" ]; then