mirror of
https://github.com/bashclub/zamba-lxc-toolbox.git
synced 2024-11-08 03:31:58 +01:00
81 lines
2.5 KiB
Bash
81 lines
2.5 KiB
Bash
#!/bin/bash
|
|
set -euo pipefail
|
|
|
|
# Authors:
|
|
# (C) 2021 Idea an concept by Christian Zengel <christian@sysops.de>
|
|
# (C) 2021 Script design and prototype by Markus Helmke <m.helmke@nettwarker.de>
|
|
# (C) 2021 Script rework and documentation by Thorsten Spille <thorsten@spille-edv.de>
|
|
|
|
# load configuration
|
|
echo "Loading configuration..."
|
|
source /root/functions.sh
|
|
source /root/zamba.conf
|
|
source /root/constants.conf
|
|
source /root/constants-service.conf
|
|
|
|
echo "Updating locales"
|
|
# update locales
|
|
sed -i "s|# $LXC_LOCALE|$LXC_LOCALE|" /etc/locale.gen
|
|
sed -i "s|# en_US.UTF-8|en_US.UTF-8|" /etc/locale.gen
|
|
cat << EOF > /etc/default/locale
|
|
LANG="$LXC_LOCALE"
|
|
LANGUAGE=$LXC_LOCALE
|
|
EOF
|
|
locale-gen $LXC_LOCALE
|
|
|
|
# Generate sources
|
|
if [ "$LXC_TEMPLATE_VERSION" == "debian-10-standard" ] ; then
|
|
|
|
cat << EOF > /etc/apt/sources.list
|
|
deb http://ftp.halifax.rwth-aachen.de/debian/ buster main contrib
|
|
|
|
deb http://ftp.halifax.rwth-aachen.de/debian/ buster-updates main contrib
|
|
|
|
# security updates
|
|
deb http://security.debian.org/debian-security buster/updates main contrib
|
|
EOF
|
|
|
|
elif [ "$LXC_TEMPLATE_VERSION" == "debian-11-standard" ] ; then
|
|
|
|
cat << EOF > /etc/apt/sources.list
|
|
deb http://ftp.halifax.rwth-aachen.de/debian/ bullseye main contrib
|
|
|
|
deb http://ftp.halifax.rwth-aachen.de/debian/ bullseye-updates main contrib
|
|
|
|
# security updates
|
|
deb http://security.debian.org/debian-security bullseye-security main contrib
|
|
EOF
|
|
|
|
elif [ "$LXC_TEMPLATE_VERSION" == "debian-12-standard" ] ; then
|
|
|
|
cat << EOF > /etc/apt/sources.list
|
|
deb http://ftp.halifax.rwth-aachen.de/debian/ bookworm main contrib
|
|
|
|
deb http://ftp.halifax.rwth-aachen.de/debian/ bookworm-updates main contrib
|
|
|
|
# security updates
|
|
deb http://security.debian.org/debian-security bookworm-security main contrib
|
|
EOF
|
|
|
|
else echo "LXC Debian Version false. Please check configuration files!" ; exit
|
|
fi
|
|
|
|
# update package lists
|
|
echo "Updating package database..."
|
|
apt --allow-releaseinfo-change update
|
|
|
|
# install latest packages
|
|
echo "Installing latest updates"
|
|
DEBIAN_FRONTEND=noninteractive DEBIAN_PRIORITY=critical apt -y -qq dist-upgrade
|
|
|
|
# install toolset
|
|
echo "Installing preconfigured toolset..."
|
|
DEBIAN_FRONTEND=noninteractive DEBIAN_PRIORITY=critical apt install -y -o DPkg::options::="--force-confdef" -o DPkg::options::="--force-confold" $LXC_TOOLSET_BASE $LXC_TOOLSET
|
|
|
|
echo "Enabling vim syntax highlighting..."
|
|
sed -i "s|\"syntax on|syntax on|g" /etc/vim/vimrc
|
|
if [ $LXC_VIM_BG_DARK -gt 0 ]; then
|
|
sed -i "s|\"set background=dark|set background=dark|g" /etc/vim/vimrc
|
|
fi
|
|
|
|
echo "Basic container setup finished, continuing with service installation..." |