From 86b6f56c9baf7423611ada1af8315861c4090b28 Mon Sep 17 00:00:00 2001 From: Dennis Eriksen Date: Sat, 16 Nov 2019 18:39:17 +0100 Subject: lsb_release is not always installed - using grep and awk instead --- mkosi.postinst | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/mkosi.postinst b/mkosi.postinst index f60d6ed..fb577ac 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 -- cgit v1.2.3