Browse Source

Merge branch 'hotfix/171029' into hotfix/171014.1

pull/1662/head
Daniel Gibbs 8 years ago
parent
commit
7b0bce7e82
  1. 3
      lgsm/functions/command_backup.sh

3
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"
tar -czf "${backupdir}/${backupname}.tar.gz" -C "${rootdir}" --exclude "${backupdir}" ./*
excludedir=$(realpath --relative-to="${rootdir}" "${backupdir}")
tar -czf "${backupdir}/${backupname}.tar.gz" -C "${rootdir}" --exclude "${excludedir}" ./*
local exitcode=$?
if [ ${exitcode} -ne 0 ]; then
fn_print_fail_eol

Loading…
Cancel
Save