From 8e41afa300fdda0af8c1cd6de1793a4826ed4a02 Mon Sep 17 00:00:00 2001 From: dennis Date: Sat, 16 Nov 2019 18:38:17 +0100 Subject: adding update- and security-repos --- mkosi.postinst | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/mkosi.postinst b/mkosi.postinst index f4d15b6..554a4c3 100755 --- a/mkosi.postinst +++ b/mkosi.postinst @@ -8,7 +8,13 @@ chmod 644 /etc/update-motd.d/* 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}') +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 +# sabnzbd groupadd --system --gid 997 warez useradd --system --gid warez --uid 997 warez -- cgit v1.2.3