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

17 lines
443 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-11-23 14:18:05 +00:00
if [[ "$(cat /storage/.config/boot.hint 2>/dev/null)" =~ UPDATE ]] && [ -e "/storage/.configured" ]
then
if [ -e "/usr/share/post-update" ]
then
2022-11-01 11:55:34 +00:00
/usr/share/post-update >/var/log/upgrade.log 2>&1
fi
rm /storage/.config/boot.hint
else
echo "No update hint found." >/var/log/upgrade.log 2>&1
fi