aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDennis Eriksen <d@ennis.no>2019-11-16 18:16:24 +0100
committerDennis Eriksen <d@ennis.no>2019-11-16 18:16:24 +0100
commit40030221bf52b537b21b9aa8baa474f61f41a895 (patch)
treebfada82e03edaf1fdd833bb7876c61165ea6eaeb
parentadding updates- and security-repositories (diff)
downloadmkosi-vaultwarden-40030221bf52b537b21b9aa8baa474f61f41a895.tar.gz
lsb_release is not always installed - using grep and awk instead
-rwxr-xr-xmkosi.postinst7
1 files changed, 3 insertions, 4 deletions
diff --git a/mkosi.postinst b/mkosi.postinst
index 2ace2d8..24b732e 100755
--- a/mkosi.postinst
+++ b/mkosi.postinst
@@ -8,13 +8,12 @@ chmod 644 /etc/update-motd.d/*
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
-
# set up bitwarden
mv /bitwarden_rs /usr/local/bin/ || echo "building"