#!/bin/sh
set -e

# Reload unit cache after remove/purge
if command -v systemctl >/dev/null 2>&1; then
    systemctl daemon-reload || true
fi
exit 0
