init: add 2 seconds pause on die, 1 second on warning so users see console messages

This commit is contained in:
Thierry Laurion 2022-11-14 18:04:04 -05:00
parent a9bee2885b
commit b67f8e19ce
No known key found for this signature in database
GPG Key ID: E7B4A71658E36A93

View File

@ -3,11 +3,13 @@
die() {
echo >&2 "$*";
sleep 2;
exit 1;
}
warn() {
echo >&2 "$*";
sleep 1;
}
recovery() {