From ebd100521f3786b58540358d3cfac456fd213aef Mon Sep 17 00:00:00 2001 From: myvesta <38690722+myvesta@users.noreply.github.com> Date: Mon, 26 Jun 2023 00:01:52 +0200 Subject: [PATCH] Temporary ProFTPD fix for Debian12 --- install/vst-install-debian.sh | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/install/vst-install-debian.sh b/install/vst-install-debian.sh index bea5eb78..d8cb251d 100755 --- a/install/vst-install-debian.sh +++ b/install/vst-install-debian.sh @@ -1261,6 +1261,12 @@ if [ "$proftpd" = 'yes' ]; then currentservice='proftpd' ensure_startup $currentservice ensure_start $currentservice + + # Temporary ProFTPD fix for Debian12 + if [ "$release" -eq 12 ]; then + systemctl disable --now proftpd.socket + systemctl enable --now proftpd.service + fi fi