Initial commit.

This commit is contained in:
2025-10-11 17:15:56 +00:00
commit 2b61d99951
23 changed files with 1755 additions and 0 deletions

28
debian/DEBIAN/prerm vendored Normal file
View File

@@ -0,0 +1,28 @@
#!/bin/bash
set -e
case "$1" in
remove|upgrade|deconfigure)
echo "Stopping wild-cloud-central service..."
# Stop and disable the service
if systemctl is-active --quiet wild-cloud-central; then
systemctl stop wild-cloud-central
fi
if systemctl is-enabled --quiet wild-cloud-central; then
systemctl disable wild-cloud-central
fi
;;
failed-upgrade)
;;
*)
echo "prerm called with unknown argument \`$1'" >&2
exit 1
;;
esac
exit 0