#!/bin/sh

set -e

[ -f /etc/default/chrony-exporter ] && . /etc/default/chrony-exporter

if [ "$1" = "remove" ]; then
    if command -v systemctl >/dev/null 2>&1 ; then
        systemctl stop chrony-exporter.service > /dev/null 2>&1 || :
    fi
fi

#DEBHELPER#
