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
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,9 @@ apply_updates() {

# make local devices available to "agama download"
mount -o bind /dev "$NEWROOT"/dev
mount -o bind /run "$NEWROOT"/run
mount -o bind /sys "$NEWROOT"/sys
ln -s /run/NetworkManager/resolv.conf "$NEWROOT"/etc/resolv.conf

# make sure the HTTPS downloads work correctly
configure_ssl
Expand Down Expand Up @@ -69,8 +71,11 @@ apply_updates() {
((index++))
done <$AGAMA_DUD_INFO

rm -r "$DUD_DIR"
umount "$NEWROOT"/dev
umount "$NEWROOT"/run
umount "$NEWROOT"/sys
rm "$NEWROOT"/etc/resolv.conf
}

# Applies an update from an RPM package
Expand Down
6 changes: 6 additions & 0 deletions live/src/agama-installer.changes
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
-------------------------------------------------------------------
Tue Aug 19 14:14:22 UTC 2025 - Imobach Gonzalez Sosa <igonzalezsosa@suse.com>

- Make /etc/resolv.conf available at /sysroot when applying the DUDs
(bsc#1248276).

-------------------------------------------------------------------
Mon Aug 18 15:48:09 UTC 2025 - Imobach Gonzalez Sosa <igonzalezsosa@suse.com>

Expand Down