diff options
author | Dennis Eriksen <d@ennis.no> | 2020-04-30 14:39:50 +0200 |
---|---|---|
committer | Dennis Eriksen <d@ennis.no> | 2020-04-30 14:39:50 +0200 |
commit | 33f4b0c9a3f02ffe954ade9405f06a06ae6baa58 (patch) | |
tree | a137f807871092cc729f9947ecd974ac3907d25f /mkosi.postinst | |
parent | exchanging apt with apt-get for better script-compatability (diff) | |
download | mkosi-miniflux-33f4b0c9a3f02ffe954ade9405f06a06ae6baa58.tar.gz |
upgrading to Focal
Diffstat (limited to 'mkosi.postinst')
-rwxr-xr-x | mkosi.postinst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mkosi.postinst b/mkosi.postinst index 46a574f..c638da9 100755 --- a/mkosi.postinst +++ b/mkosi.postinst @@ -8,7 +8,7 @@ systemctl mask motd-news.service 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}') +RELEASE=$(grep DISTRIB_CODENAME /etc/lsb-release | awk -F'=' '{print $2}') 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-get update && apt-get --yes full-upgrade && apt-get --yes autoremove |