diff options
author | Dennis Eriksen <d@ennis.no> | 2020-03-16 10:52:20 +0100 |
---|---|---|
committer | Dennis Eriksen <d@ennis.no> | 2020-03-16 10:52:20 +0100 |
commit | 9d9d31676a9348fe53f9840d660cc305d5fd8a02 (patch) | |
tree | 39cc6ea6bf428790d9851cf652733babb72c93ac | |
parent | lsb_release is not always installed - using grep and awk instead (diff) | |
download | mkosi-cgit-9d9d31676a9348fe53f9840d660cc305d5fd8a02.tar.gz |
updating repo-location
-rw-r--r-- | mkosi.default | 2 | ||||
-rwxr-xr-x | mkosi.postinst | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/mkosi.default b/mkosi.default index 52e7d1b..d8df547 100644 --- a/mkosi.default +++ b/mkosi.default @@ -2,7 +2,7 @@ Distribution=ubuntu Release=bionic Repositories=main,universe -Mirror=http://no.archive.ubuntu.com +Mirror=http://no.archive.ubuntu.com/ubuntu [Output] Format=directory diff --git a/mkosi.postinst b/mkosi.postinst index 2b348aa..eecf67a 100755 --- a/mkosi.postinst +++ b/mkosi.postinst @@ -9,8 +9,8 @@ systemctl mask motd-news.timer # Add update- and security-repositories, and perform upgrade RELEASE=$(cat /etc/lsb-release | grep DISTRIB_CODENAME | awk -F'=' '{print $2}') -echo "deb http://no.archive.ubuntu.com ${RELEASE}-security main universe" >> /etc/apt/sources.list -echo "deb http://no.archive.ubuntu.com ${RELEASE}-updates main universe" >> /etc/apt/sources.list +echo "deb http://no.archive.ubuntu.com/ubuntu ${RELEASE}-security main universe" >> /etc/apt/sources.list +echo "deb http://no.archive.ubuntu.com/ubuntu ${RELEASE}-updates main universe" >> /etc/apt/sources.list apt update && apt --yes full-upgrade && apt --yes autoremove # cgit |