Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 8 additions & 3 deletions live/live-root/usr/bin/live-self-update
Original file line number Diff line number Diff line change
Expand Up @@ -250,9 +250,14 @@ install_updates() {
query_reg_server

# repo from the registration server
if [ -s "$REG_REPO_FILE" ]; then
prepare_chroot
add_update_repos "$REG_REPO_FILE"
if [ -f "$REG_REPO_FILE" ]; then
if [ -s "$REG_REPO_FILE" ]; then
prepare_chroot
add_update_repos "$REG_REPO_FILE"
else
milestone "No repository found in the registration server, skipping self-update"
exit 0
fi
# use a fallback URL
elif [ -s "$CONFIG_FALLBACK_FILE" ]; then
milestone "Using fallback repository"
Expand Down
7 changes: 7 additions & 0 deletions live/src/agama-installer.changes
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
-------------------------------------------------------------------
Thu Feb 12 14:57:21 UTC 2026 - Ladislav Slezák <lslezak@suse.com>

- Fixed failing self-update, the self-update repository is not
ready yet. If SCC returns empty response then do not try using
the fallback URL and skip the self-update process. (bsc#1258142)

-------------------------------------------------------------------
Wed Feb 11 14:45:20 UTC 2026 - Eugenio Paolantonio <eugenio.paolantonio@suse.com>

Expand Down
Loading