aboutsummaryrefslogtreecommitdiffstats
path: root/mkosi.postinst
blob: 08f4a46e3281b3f26f32736a7b964db1ff10ae84 (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
#!/bin/sh
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
RELEASE=$(grep DISTRIB_CODENAME /etc/lsb-release | 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-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
locale-gen

useradd --system --shell /usr/sbin/nologin --home-dir /var/lib/filebin --create-home --user-group filebin

mkdir /tmp/filebin /var/log/filebin
chown filebin: /tmp/filebin /var/log/filebin
chmod 700 /tmp/filebin /var/log/filebin

systemctl enable filebin.service