Browse Source

noprompt again

pull/1144/head
UltimateByte 9 years ago
committed by GitHub
parent
commit
e9216cf0c4
  1. 22
      lgsm/functions/command_backup.sh

22
lgsm/functions/command_backup.sh

@ -169,15 +169,19 @@ fn_backup_clearing(){
if [ "${backupclearcount}" -ne "0" ]; then if [ "${backupclearcount}" -ne "0" ]; then
fn_print_info_nl "${backupclearcount} backups older than ${backupdays} days can be cleared." 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" fn_script_log "${backupclearcount} backups older than ${backupdays} days can be cleared"
while true; do if [ "${backupnoprompt}" != "1" ]; then
read -p -e"Clear older backups? [Y/N]" yn while true; do
case $yn in read -p -e"Clear older backups? [Y/N]" yn
[Yy]* ) clearoldbackups="yes"; break;; case $yn in
[Nn]* ) clearoldbackups="no"; fn_script_log "Not clearing backups"; break;; [Yy]* ) clearoldbackups="yes"; break;;
* ) echo "Please answer yes or no.";; [Nn]* ) clearoldbackups="no"; fn_script_log "Not clearing backups"; break;;
esac * ) echo "Please answer yes or no.";;
done esac
# If user wants to clear backups done
else
clearoldbackups="yes"
fi
# If user wants to clear backups or if noprompt
if [ "${clearoldbackups}" == "yes" ]; then if [ "${clearoldbackups}" == "yes" ]; then
find "${backupdir}"/ -mtime +"${backupdays}" -type f -exec rm -f {} \; find "${backupdir}"/ -mtime +"${backupdays}" -type f -exec rm -f {} \;
fn_print_ok_nl "Cleared ${backupclearcount} backups." fn_print_ok_nl "Cleared ${backupclearcount} backups."

Loading…
Cancel
Save