#!/bin/sh
# postrm script for prometheus
# Script executed after the package is removed.

set -e

case "$1" in
  purge)
        rm -rf /var/run/prometheus /var/log/prometheus \
            /var/lib/prometheus/metrics
	# We do NOT remove the system user.
	;;
esac

#DEBHELPER#
