#!/bin/sh
set -e

case "$1" in
    remove)
        systemctl restart infrastructure-agent.service || true
    ;;
esac

#DEBHELPER#

exit 0
