Files
minilb/debian/minilb-service.prerm
T
2026-03-24 10:31:30 +02:00

8 lines
244 B
Bash
Executable File

#!/bin/sh -e
if [ "$1" = "remove" ] || [ "$1" = "purge" ]; then
# Package removal, not upgrade
systemctl --no-reload disable minilbd.service > /dev/null 2>&1 || :
systemctl stop minilbd.service > /dev/null 2>&1 || :
fi