From 8d8618acfac5ee97b0ede5118d72ec3e2134c201 Mon Sep 17 00:00:00 2001 From: thorstenspille Date: Fri, 7 Jul 2023 00:39:21 +0200 Subject: [PATCH] Migrate zmb-standalone to debian bookworm --- src/zmb-standalone/constants-service.conf | 2 +- src/zmb-standalone/install-service.sh | 24 +---------------------- 2 files changed, 2 insertions(+), 24 deletions(-) diff --git a/src/zmb-standalone/constants-service.conf b/src/zmb-standalone/constants-service.conf index 1b9daf8..c9d5a2a 100644 --- a/src/zmb-standalone/constants-service.conf +++ b/src/zmb-standalone/constants-service.conf @@ -8,7 +8,7 @@ # This file contains the project constants on service level # Debian Version, which will be installed -LXC_TEMPLATE_VERSION="debian-11-standard" +LXC_TEMPLATE_VERSION="debian-12-standard" # Create sharefs mountpoint LXC_MP="1" diff --git a/src/zmb-standalone/install-service.sh b/src/zmb-standalone/install-service.sh index b14bd3b..7865323 100644 --- a/src/zmb-standalone/install-service.sh +++ b/src/zmb-standalone/install-service.sh @@ -9,34 +9,12 @@ source /root/functions.sh source /root/zamba.conf source /root/constants-service.conf -# add wsdd package repo -apt-key adv --fetch-keys https://pkg.ltec.ch/public/conf/ltec-ag.gpg.key apt-key adv --fetch-keys https://repo.45drives.com/key/gpg.asc echo "deb https://repo.45drives.com/debian focal main" > /etc/apt/sources.list.d/45drives.list -echo "deb https://pkg.ltec.ch/public/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/wsdd.list -echo "deb http://ftp.de.debian.org/debian $(lsb_release -cs)-backports main contrib" > /etc/apt/sources.list.d/$(lsb_release -cs)-backports.list - -cat << EOF > /etc/apt/preferences.d/samba -Package: samba* -Pin: release a=$(lsb_release -cs)-backports -Pin-Priority: 900 -EOF - -cat << EOF > /etc/apt/preferences.d/winbind -Package: winbind* -Pin: release a=$(lsb_release -cs)-backports -Pin-Priority: 900 -EOF - -cat << EOF > /etc/apt/preferences.d/cockpit -Package: cockpit* -Pin: release a=$(lsb_release -cs)-backports -Pin-Priority: 900 -EOF apt update -DEBIAN_FRONTEND=noninteractive DEBIAN_PRIORITY=critical apt install -y -o DPkg::options::="--force-confdef" -o DPkg::options::="--force-confold" -t $(lsb_release -cs)-backports acl samba samba-common samba-common-bin samba-dsdb-modules samba-vfs-modules samba-libs libwbclient0 winbind wsdd +DEBIAN_FRONTEND=noninteractive DEBIAN_PRIORITY=critical apt install -y -o DPkg::options::="--force-confdef" -o DPkg::options::="--force-confold" acl samba samba-common samba-common-bin samba-dsdb-modules samba-vfs-modules samba-libs libwbclient0 winbind wsdd DEBIAN_FRONTEND=noninteractive DEBIAN_PRIORITY=critical apt install -y -o DPkg::options::="--force-confdef" -o DPkg::options::="--force-confold" --no-install-recommends cockpit cockpit-identities cockpit-file-sharing cockpit-navigator USER=$(echo "$ZMB_ADMIN_USER" | awk '{print tolower($0)}')