Browse Source

new alert wipe

feature/alerts-refactor
Daniel Gibbs 4 years ago
parent
commit
74bad97901
  1. 11
      lgsm/functions/alert.sh
  2. 2
      lgsm/functions/command_wipe.sh

11
lgsm/functions/alert.sh

@ -88,6 +88,15 @@ fn_alert_config(){
alertbody="${selfname} has received a new _default.cfg. Check file for changes."
}
fn_alert_wipe(){
fn_script_log_info "Sending alert: Wiped: ${executable} not running"
alertsubject="Alert - ${selfname} - Wiped"
alertemoji="💿"
alertsound="1"
alerturl="not enabled"
alertbody="${selfname} as been wiped."
}
# Gather info required for alert.
info_distro.sh
info_game.sh
@ -152,6 +161,8 @@ elif [ "${alert}" == "check-update" ]; then
fn_alert_check_update
elif [ "${alert}" == "config" ]; then
fn_alert_config
elif [ "${alert}" == "wipe" ]; then
fn_alert_wipe
fi
# Generate alert log.

2
lgsm/functions/command_wipe.sh

@ -173,6 +173,8 @@ if [ -n "$(find "${serveridentitydir}" -type f -name "*.map")" ]||[ -n "$(find "
else
fn_wipe_files
fn_wipe_random_seed
alert="wipe"
alert.sh
fn_print_complete_nl "${wipetype}"
fn_script_log_pass "${wipetype}"
fi

Loading…
Cancel
Save