diff options
author | dennis <dennis@mrslave> | 2019-11-16 18:38:17 +0100 |
---|---|---|
committer | dennis <dennis@mrslave> | 2019-11-16 18:38:17 +0100 |
commit | 8e41afa300fdda0af8c1cd6de1793a4826ed4a02 (patch) | |
tree | 33eba6c16c5b4f59b3f8a7d3daccdb8dad9e2e26 | |
parent | moving from skeleton to extra (diff) | |
download | mkosi-sabnzbd-8e41afa300fdda0af8c1cd6de1793a4826ed4a02.tar.gz |
adding update- and security-repos
-rwxr-xr-x | mkosi.postinst | 6 |
1 files changed, 6 insertions, 0 deletions
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 |