mirror of
https://github.com/rootzoll/raspiblitz.git
synced 2025-02-24 14:51:03 +01:00
add event system-init
This commit is contained in:
parent
452d6fafb8
commit
4ff3e3deb2
1 changed files with 2 additions and 1 deletions
|
@ -28,7 +28,7 @@ backtitle="RaspiBlitz ${codeVersion} / ${localip}"
|
|||
# 1) WELL DEFINED EVENTS
|
||||
################################################
|
||||
|
||||
if [ "${eventID}" == "starting" ]; then
|
||||
if [ "${eventID}" == "starting" ] || [ "${eventID}" == "system-init" ]; then
|
||||
|
||||
dialog --backtitle "${backtitle}" --cr-wrap --infobox "
|
||||
Starting RaspiBlitz
|
||||
|
@ -41,6 +41,7 @@ elif [ "${eventID}" == "reboot" ]; then
|
|||
Shutting down for reboot.
|
||||
" 5 30
|
||||
|
||||
|
||||
elif [ "${eventID}" == "noHDD" ]; then
|
||||
|
||||
# contentWords[0] --> size string (for example '1TB')
|
||||
|
|
Loading…
Add table
Reference in a new issue