#!/bin/sh
# debian/postrm - LIVEN post-removal script
set -e

case "$1" in
    remove|purge)
        if [ -d /run/systemd/system ] || [ -d /lib/systemd/system ]; then
            echo "Reloading systemd configuration..."
            systemctl daemon-reload || true
        fi
        ;;
    upgrade|failed-upgrade|abort-install|abort-upgrade|disappear)
        ;;
    *)
        echo "postrm called with unknown argument \`$1'" >&2
        exit 1
        ;;
esac

exit 0
