From e9216cf0c4b3138d2883599a3002be24f9cea58c Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Thu, 20 Oct 2016 23:12:28 +0200 Subject: [PATCH] noprompt again --- lgsm/functions/command_backup.sh | 22 +++++++++++++--------- 1 file changed, 13 insertions(+), 9 deletions(-) diff --git a/lgsm/functions/command_backup.sh b/lgsm/functions/command_backup.sh index 01a6c3d03..8f3548ab8 100644 --- a/lgsm/functions/command_backup.sh +++ b/lgsm/functions/command_backup.sh @@ -169,15 +169,19 @@ fn_backup_clearing(){ if [ "${backupclearcount}" -ne "0" ]; then fn_print_info_nl "${backupclearcount} backups older than ${backupdays} days can be cleared." fn_script_log "${backupclearcount} backups older than ${backupdays} days can be cleared" - while true; do - read -p -e"Clear older backups? [Y/N]" yn - case $yn in - [Yy]* ) clearoldbackups="yes"; break;; - [Nn]* ) clearoldbackups="no"; fn_script_log "Not clearing backups"; break;; - * ) echo "Please answer yes or no.";; - esac - done - # If user wants to clear backups + if [ "${backupnoprompt}" != "1" ]; then + while true; do + read -p -e"Clear older backups? [Y/N]" yn + case $yn in + [Yy]* ) clearoldbackups="yes"; break;; + [Nn]* ) clearoldbackups="no"; fn_script_log "Not clearing backups"; break;; + * ) echo "Please answer yes or no.";; + esac + done + else + clearoldbackups="yes" + fi + # If user wants to clear backups or if noprompt if [ "${clearoldbackups}" == "yes" ]; then find "${backupdir}"/ -mtime +"${backupdays}" -type f -exec rm -f {} \; fn_print_ok_nl "Cleared ${backupclearcount} backups."