summaryrefslogtreecommitdiffstats
path: root/mkosi.postinst
blob: 41673b5b257e900743e97190d45682a5ffe309e1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
#!/bin/sh
set -ex
export DEBIAN_FRONTEND=noninteractive
export XDG_CONFIG_HOME="/config/xdg"

# 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
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
useradd --system --gid 997 --uid 997 plex

echo deb https://downloads.plex.tv/repo/deb public main > /etc/apt/sources.list.d/plex.list

curl https://downloads.plex.tv/plex-keys/PlexSign.key | apt-key add -

apt update

apt install --yes plexmediaserver

# plex adds its own repo-file, with everything commented out. I guess plex
# wants to do in-app upgrades.
rm /etc/apt/sources.list.d/plex.list

apt update