summaryrefslogblamecommitdiffstats
path: root/mkosi.postinst
blob: 592159b1c7778b98db01881c4d10f97365b8e04d (plain) (tree)
1
2
3
4
5
6
7
8
9

         

                                     




                                
                                                            
                                                                                

                                                                                                         
                                                                        
 










                                                                                                                                                                                   
#!/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=$(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-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

# get matrix gpg-key
wget -O /usr/share/keyrings/matrix-org-archive-keyring.gpg https://packages.matrix.org/debian/matrix-org-archive-keyring.gpg
echo "deb [signed-by=/usr/share/keyrings/matrix-org-archive-keyring.gpg] https://packages.matrix.org/debian/ $(lsb_release -cs) main" | tee /etc/apt/sources.list.d/matrix-org.list

apt-get update
apt-get install --yes matrix-synapse-py3
rm -r /etc/matrix-synapse/*