Browse Source

Corrected output check from tar command

Was inverted
pull/996/head
UltimateByte 9 years ago
committed by GitHub
parent
commit
2ad8b671a2
  1. 4
      lgsm/functions/command_backup.sh

4
lgsm/functions/command_backup.sh

@ -47,7 +47,7 @@ if [ ! -d "${backupdir}" ]; then
mkdir "${backupdir}"
fi
tar -czf "${backupdir}/${backupname}.tar.gz" -C "${rootdir}" --exclude "backups" ./*
if [ $? != 0 ]; then
if [ $? == 0 ]; then
fn_print_ok_nl "Backup created: ${backupname}.tar.gz is $(du -sh "${backupdir}/${backupname}.tar.gz" | awk '{print $1}') size"
fn_script_log_pass "Backup created: ${backupdir}/${backupname}.tar.gz is $(du -sh "${backupdir}/${backupname}.tar.gz" | awk '{print $1}') size"
else
@ -56,4 +56,4 @@ else
fi
sleep 1
echo ""
core_exit.sh
core_exit.sh

Loading…
Cancel
Save