blob: 1c599bb8759fbf2c6995797efc4943fe6b92a7b2 (
plain) (
tree)
|
|
#!/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 ${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
# locales
sed -i 's/# en_IE.UTF-8 UTF-8/en_IE.UTF-8 UTF-8/' /etc/locale.gen
locale-gen
# install miniflux
curl -s https://apt.miniflux.app/KEY.gpg | apt-key add -
echo "deb https://apt.miniflux.app/ /" > /etc/apt/sources.list.d/miniflux.list
apt update
apt install --yes miniflux
mkdir /etc/miniflux
chown miniflux:miniflux /etc/miniflux
chmod 700 /etc/miniflux
|