diff options
author | Dennis Eriksen <d@ennis.no> | 2019-11-16 16:59:18 +0100 |
---|---|---|
committer | Dennis Eriksen <d@ennis.no> | 2019-11-16 16:59:18 +0100 |
commit | 52fe512bd289e1f38baf1ce22fd13951f86d1e0f (patch) | |
tree | 25536c80db959af2df3f1acf97175acd079474ac | |
parent | moving from skeleton to extra, and removing dnns.no (diff) | |
download | mkosi-cgit-52fe512bd289e1f38baf1ce22fd13951f86d1e0f.tar.gz |
adding updates- and security-repositories
-rwxr-xr-x | mkosi.postinst | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/mkosi.postinst b/mkosi.postinst index 7e22768..69f53e3 100755 --- a/mkosi.postinst +++ b/mkosi.postinst @@ -7,10 +7,12 @@ chmod 644 /etc/update-motd.d/* systemctl mask motd-news.service systemctl mask motd-news.timer -# locales -#sed -i 's/# en_IE.UTF-8 UTF-8/en_IE.UTF-8 UTF-8/' /etc/locale.gen -#locale-gen +# 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 +# cgit groupadd --gid 997 --system git useradd --home-dir /var/lib/gitolite3 --system --gid 997 git adduser www-data git |