diff options
author | Dennis Eriksen <d@ennis.no> | 2019-11-16 18:37:32 +0100 |
---|---|---|
committer | Dennis Eriksen <d@ennis.no> | 2019-11-16 18:37:32 +0100 |
commit | 27eee9b9234a63898291c7a270a995601a550f1c (patch) | |
tree | 16a7de53f4f42e8b0d2f7bcffe3e4fbc27515c14 | |
parent | adding updates- and security-repositories (diff) | |
download | mkosi-kanboard-27eee9b9234a63898291c7a270a995601a550f1c.tar.gz |
lsb_release is not always installed - using grep and awk instead
-rwxr-xr-x | mkosi.postinst | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/mkosi.postinst b/mkosi.postinst index 45c0cc0..cbf5787 100755 --- a/mkosi.postinst +++ b/mkosi.postinst @@ -8,8 +8,9 @@ systemctl mask motd-news.service systemctl mask motd-news.timer # Add update- and security-repositories, and perform upgrade -echo "deb http://no.archive.ubuntu.com $(lsb_release --short --codename)-security main universe" >> /etc/apt/sources.list -echo "deb http://no.archive.ubuntu.com $(lsb_release --short --codename)-updates main universe" >> /etc/apt/sources.list +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 apt update && apt --yes full-upgrade && apt --yes autoremove # locales |