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

16 lines
383 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
/usr/share/post-update
fi
rm /storage/.config/boot.hint
2022-03-28 23:53:26 +00:00
touch /storage/.configured
fi