mirror of
https://github.com/rootzoll/raspiblitz.git
synced 2025-02-25 07:07:46 +01:00
show tail info on provision
This commit is contained in:
parent
bd3c5668f9
commit
09d89fd410
1 changed files with 17 additions and 1 deletions
|
@ -81,12 +81,28 @@ For shutdown use command: off
|
|||
|
||||
elif [ "${eventID}" == "provision" ] || [ "${eventID}" == "recovering" ]; then
|
||||
|
||||
if [ "${mode}" == "ssh" ]; then
|
||||
|
||||
# provision info when logged in
|
||||
dialog --backtitle "${backtitle}" --cr-wrap --infobox "
|
||||
Upgrade/Recover/Provision
|
||||
---> ${contentString}
|
||||
|
||||
Run 'tail -f ./raspiblitz.log' in
|
||||
new terminal to follow install logs.
|
||||
" 9 40
|
||||
|
||||
else
|
||||
|
||||
# provision on LCD, etc
|
||||
dialog --backtitle "${backtitle}" --cr-wrap --infobox "
|
||||
Upgrade/Recover/Provision
|
||||
---> ${contentString}
|
||||
Please keep running until done.
|
||||
" 7 40
|
||||
|
||||
fi
|
||||
|
||||
elif [ "${eventID}" == "repair" ] && [ "${mode}" == "lcd" ]; then
|
||||
|
||||
dialog --backtitle "${backtitle}" --cr-wrap --infobox "
|
||||
|
|
Loading…
Add table
Reference in a new issue