Compare commits

..

2 commits

Author SHA1 Message Date
Tobias Powalowski
9a0abb54b9 update CHANGELOG 2024-07-28 16:41:28 +02:00
Tobias Powalowski
d8ebfd3857 fix Server = entry on installed system, remove wrong double quote 2024-07-28 16:34:24 +02:00
2 changed files with 2 additions and 1 deletions

View file

@ -38,6 +38,7 @@ server-update:
- added automatic update scripts
setup:
- abort on pacman package installation error
- fixed autoconfiguration of mirror
---
Highlights 2024.06:
- systemd 256.x support

View file

@ -135,7 +135,7 @@ _auto_pacman_mirror() {
#shellcheck disable=SC2027,SC2086
cat << EOF > /tmp/inst-mirrorlist
# Mirror used during installation
Server = "${_SYNC_URL}
Server = ${_SYNC_URL}
EOF
cat "${_DESTDIR}"/etc/pacman.d/mirrorlist >> /tmp/inst-mirrorlist
mv /tmp/inst-mirrorlist "${_DESTDIR}/etc/pacman.d/mirrorlist"