diff options
author | Dennis Eriksen <d@ennis.no> | 2020-04-17 10:39:49 +0200 |
---|---|---|
committer | Dennis Eriksen <d@ennis.no> | 2020-04-17 10:39:49 +0200 |
commit | 1e8a94720a45a404bc9d712113d9650e059711ca (patch) | |
tree | 08b9e38f2996d1c18cbb81e0cb110b278ca9d52f | |
parent | updating repo-location (diff) | |
download | mkosi-kanboard-1e8a94720a45a404bc9d712113d9650e059711ca.tar.gz |
exchanging apt with apt-get for better script-compatability
-rwxr-xr-x | mkosi.postinst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mkosi.postinst b/mkosi.postinst index 302fc3b..d172104 100755 --- a/mkosi.postinst +++ b/mkosi.postinst @@ -11,7 +11,7 @@ systemctl mask motd-news.timer RELEASE=$(cat /etc/lsb-release | grep DISTRIB_CODENAME | awk -F'=' '{print $2}') echo "deb http://no.archive.ubuntu.com/ubuntu ${RELEASE}-security main universe" >> /etc/apt/sources.list echo "deb http://no.archive.ubuntu.com/ubuntu ${RELEASE}-updates main universe" >> /etc/apt/sources.list -apt update && apt --yes full-upgrade && apt --yes autoremove +apt-get update && apt-get --yes full-upgrade && apt-get --yes autoremove # locales sed -i 's/# en_IE.UTF-8 UTF-8/en_IE.UTF-8 UTF-8/' /etc/locale.gen |