From f54f546830e257c4cb209902d0a036cf96a40081 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Fri, 21 Oct 2016 03:45:40 +0200 Subject: [PATCH] typos --- lgsm/functions/command_backup.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lgsm/functions/command_backup.sh b/lgsm/functions/command_backup.sh index 5abb78ed8..d45f11434 100644 --- a/lgsm/functions/command_backup.sh +++ b/lgsm/functions/command_backup.sh @@ -142,7 +142,7 @@ backupquotadiff=$((backupscount-maxbackups)) #backupquotadiff=$(find ${backupdir}"/ -type f -printf '%T@ %p\n' | sort -rn | tail -n +"${maxbackups}" | cut -f2- -d" " | wc -l) backupsoudatedcount=$(find "${backupdir}"/ -type f -name "*.tar.gz" -mtime +"${maxbackupdays}"|wc -l) # If backup variables are set -if [ -n "${maxbackupdays}" ]&&{ -n "${maxbackups}" ]; then +if [ -n "${maxbackupdays}" ]&&[ -n "${maxbackups}" ]; then # If anything can be cleared if [ "${backupquotadiff}" -gt "0" ]||[ "${backupsoudatedcount}" -gt "0" ]; then # If maxbackups is used over maxbackupdays @@ -164,6 +164,7 @@ if [ -n "${maxbackupdays}" ]&&{ -n "${maxbackups}" ]; then fn_script_log_pass "Cleared ${backupsoudatedcount} backups" else fn_script_log "No backups older than ${maxbackupdays} days were found" + fi fi else fn_script_log "No backups to clear since maxbackupdays variable is empty"