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

fix(system-upgrades): Workaround potential script failures

Currently various scriptlets fail as part of `dnf upgrade -y` due to
SELinux transitions conflicting with `spc_t`. Which also prevented a
proper kernel update.

Therefore this solution just triggers the right systemd job, that should
take care of the update, before checking if we need to reboot the
machine.

References:
https://danwalsh.livejournal.com/74754.html
parent e9c0bbfc
No related branches found
No related tags found
No related merge requests found
......@@ -10,8 +10,9 @@ stringData:
#!/bin/sh
set -e
set -x
dnf install -y dnf-utils
dnf upgrade -y --best
dnf install -y dnf-automatic
systemctl enable --now dnf-automatic.timer
systemctl start --wait dnf-automatic-install.service
if ! dnf needs-restarting --reboothint; then
systemctl reboot
fi
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment