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

9 lines
124 B
Bash

#!/bin/sh
set -e
if command -v systemctl >/dev/null 2>&1; then
systemctl daemon-reload >/dev/null 2>&1 || true
fi
exit 0