Skip to content
Snippets Groups Projects
Verified Commit e9b92cbf authored by Sheogorath's avatar Sheogorath :european_castle:
Browse files

fix(system-upgrades): Fix bootloop after system upgrade

This patch resolves the issues with the bootloop caused by the wrong
implementation of `needs-restarting`, which returns a list of apps, that
needs to be restarted. However, without the `--reboothint` parameter,
it'll fail to indicate the reboot requirement using an exit code.

Therefore the loop was always true and resulted in a reboot loop.
parent fd9f7bf1
Branches
Tags
No related merge requests found
...@@ -12,7 +12,7 @@ stringData: ...@@ -12,7 +12,7 @@ stringData:
set -x set -x
dnf install -y dnf-utils dnf install -y dnf-utils
dnf upgrade -y --best dnf upgrade -y --best
if needs-restarting; then if ! dnf needs-restarting --reboothint; then
systemctl reboot systemctl reboot
fi fi
--- ---
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please to comment