Initialize Git Repository: 'Stalwart'
All checks were successful
Stalwart / Stalwart (amd64, bookworm trixie noble, main, stalwart-x86_64-unknown-linux-gnu, stalwart-cli-x86_64-unknown-linux-gnu) (push) Successful in 1m35s
Stalwart / Stalwart (arm64, bookworm trixie noble, main, stalwart-aarch64-unknown-linux-gnu, stalwart-cli-aarch64-unknown-linux-gnu) (push) Successful in 1m14s

This commit is contained in:
Cantibra
2026-03-19 14:16:28 +01:00
commit 3814ae8fc7
16 changed files with 876 additions and 0 deletions

19
stalwart/DEBIAN/prerm Normal file
View File

@@ -0,0 +1,19 @@
#!/bin/sh
set -e
set -u
case "${1}" in
remove)
if [ -x '/usr/bin/deb-systemd-invoke' ]; then
/usr/bin/deb-systemd-invoke stop 'stalwart.service' > '/dev/null' 2>&1 || \
/usr/bin/true
/usr/bin/deb-systemd-invoke disable 'stalwart.service' > '/dev/null' 2>&1 || \
/usr/bin/true
fi
if [ -x '/etc/init.d/stalwart' ]; then
/usr/sbin/update-rc.d 'stalwart' remove > '/dev/null' 2>&1 || \
/usr/bin/true
fi
;;
esac