diff options
author | dennis <dennis@mrslave> | 2019-11-16 18:33:59 +0100 |
---|---|---|
committer | dennis <dennis@mrslave> | 2019-11-16 18:33:59 +0100 |
commit | 83f0ca4b0597b0a5671e98b7c359c6c2c16e2df7 (patch) | |
tree | 47ba22921c5c505800ef143a978379992f311a01 /mkosi.postinst | |
parent | moving from skeleton to extra (diff) | |
download | mkosi-plex-83f0ca4b0597b0a5671e98b7c359c6c2c16e2df7.tar.gz |
adding update- and security-repos
Diffstat (limited to 'mkosi.postinst')
-rwxr-xr-x | mkosi.postinst | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/mkosi.postinst b/mkosi.postinst index 4159b62..41673b5 100755 --- a/mkosi.postinst +++ b/mkosi.postinst @@ -8,6 +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 + +# ples systemctl enable systemd-networkd groupadd --system --gid 997 plex |