Bug ID | 1218367 |
---|---|
Summary | kalpa-firstboot crashes after fresh install |
Classification | openSUSE |
Product | openSUSE Kalpa |
Version | Current |
Hardware | Other |
OS | Other |
Status | NEW |
Severity | Normal |
Priority | P5 - None |
Component | Base |
Assignee | sfalken@cloverleaf-linux.org |
Reporter | vincent+suse@koppen.email |
QA Contact | qa-bugs@suse.de |
Target Milestone | --- |
Found By | --- |
Blocker | --- |
Created attachment 871540 [details] fixed kalpa-firstboot Just did a fresh install of openSUSE Kalpa and the firstboot script (for installing the flatpak packages) crashed. To fix this I applied the following changes to kalpa-firstboot, see also the attached file. I tested it by copying /usr/bin/kalpa-firstboot to my home directory, edited there as below and than ran it from the terminal. >diff kalpa-firstboot /usr/bin/kalpa-firstboot >>10c10 >< qdbus-qt5 $dbusRef setLabelText "$label" >--- >> qdbus-qt5 "$dbusRef" setLabelText "$label" >12,13c12,13 >< if eval "$@"; then >< qdbus-qt5 $dbusRef value "$step" >--- >> if "$@"; then >> qdbus-qt5 "$dbusRef" Set "" value "$step" >21c21 >< run_task 2 "Adding Flathub Repository" /usr/bin/flatpak remote-add --user >--if-not-exists flathub /usr/share/kalpa/flathub.flatpakrepo >--- >> run_task 2 "Adding Flathub Repository" /usr/bin/flatpak remote-add --user >--if-not-exists flathub /usr/share/microos-desktop/flathub.flatpakrepo >30c30 >< qdbus-qt5 $dbusRef close >--- >> qdbus-qt5 "$dbusRef" close