diff options
author | dennis <dennis@mrslave> | 2020-04-28 20:32:24 +0200 |
---|---|---|
committer | dennis <dennis@mrslave> | 2020-04-28 20:32:24 +0200 |
commit | 440b609f2ea69f9612c73c1d2c02b41db216bf9c (patch) | |
tree | 19217ee5fcc1e3015d7c9f121841c23e1bc93e03 /mkosi.postinst | |
parent | exchanging apt with apt-get for better script-compatability (diff) | |
download | mkosi-radarr-440b609f2ea69f9612c73c1d2c02b41db216bf9c.tar.gz |
fork from sonarr to radarr
Diffstat (limited to '')
-rwxr-xr-x | mkosi.postinst | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/mkosi.postinst b/mkosi.postinst index 1211413..700b3c3 100755 --- a/mkosi.postinst +++ b/mkosi.postinst @@ -8,14 +8,14 @@ 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 +echo "deb http://no.archive.ubuntu.com/ubuntu $(lsb_release --short --codename)-security main universe" >> /etc/apt/sources.list +echo "deb http://no.archive.ubuntu.com/ubuntu $(lsb_release --short --codename)-updates main universe" >> /etc/apt/sources.list apt-get update && apt-get --yes full-upgrade && apt-get --yes autoremove # mono #apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys 3FA7E0328081BFF6A14DA29AA6A19B38D3D831EF curl https://download.mono-project.com/repo/xamarin.gpg | apt-key add - -echo "deb https://download.mono-project.com/repo/ubuntu stable-bionic main" | tee /etc/apt/sources.list.d/mono-official-stable.list +echo "deb https://download.mono-project.com/repo/ubuntu stable-$(lsb_release --short --codename) main" | tee /etc/apt/sources.list.d/mono-official-stable.list apt-get update |