diff options
author | Dennis Eriksen <d@ennis.no> | 2019-11-16 16:56:46 +0100 |
---|---|---|
committer | Dennis Eriksen <d@ennis.no> | 2019-11-16 16:56:46 +0100 |
commit | 72b9eef9b7b8b80b16e7e0a5cac28f30204240dc (patch) | |
tree | 08248574773345e7d0ac1f49cd577e036436b163 | |
parent | forgot this file might not exist the first time postinst is run (diff) | |
download | mkosi-vaultwarden-72b9eef9b7b8b80b16e7e0a5cac28f30204240dc.tar.gz |
adding updates- and security-repositories
-rwxr-xr-x | mkosi.postinst | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/mkosi.postinst b/mkosi.postinst index 7d47fcf..2ace2d8 100755 --- a/mkosi.postinst +++ b/mkosi.postinst @@ -2,12 +2,19 @@ set -ex export DEBIAN_FRONTEND=noninteractive + # motd 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 +apt update && apt --yes full-upgrade && apt --yes autoremove + + # set up bitwarden mv /bitwarden_rs /usr/local/bin/ || echo "building" |