uce/scripts/deb/prerm
2026-04-19 21:15:52 +00:00

11 lines
199 B
Bash

#!/bin/sh
set -e
if [ "$1" = "remove" ] || [ "$1" = "deconfigure" ]; then
if command -v systemctl >/dev/null 2>&1; then
systemctl disable --now uce.service >/dev/null 2>&1 || true
fi
fi
exit 0