distribution/packages/jelos/sources/autostart/common/004-upgrade

21 lines
539 B
Text
Raw Normal View History

2022-03-28 23:53:26 +00:00
#!/bin/bash
# SPDX-License-Identifier: Apache-2.0
# Copyright (C) 2021-present Fewtarius (https://github.com/fewtarius)
. /etc/profile
2022-03-28 23:53:26 +00:00
if [ "$(cat /storage/.config/boot.hint 2>/dev/null)" = "UPDATE" ] || [ ! -e "/storage/.configured" ]
then
if [ -e "/usr/share/post-update" ]
then
show_splash intro
echo -ne "\033[100H\033[2K==> Preparing system.." >/dev/console
/usr/share/post-update
fi
rm /storage/.config/boot.hint
2022-03-28 23:53:26 +00:00
touch /storage/.configured
fi
2022-04-01 12:39:48 +00:00
clear >/dev/console
/usr/bin/show_splash intro 2>&1 >>${BOOTLOG}