summaryrefslogtreecommitdiffstats
path: root/mkosi.postinst
blob: 8dca0715076eaebb2c9dbbb0ff402e8270cfb621 (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
#!/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

# etherpad
groupadd --system etherpad
useradd --home-dir /opt/etherpad --system --gid etherpad etherpad


git clone --branch master https://github.com/ether/etherpad-lite.git /opt/etherpad
chmod 700 /opt/etherpad
chown -R etherpad: /opt/etherpad

sudo -u etherpad -H /opt/etherpad/bin/installDeps.sh

systemctl enable etherpad