1#! /bin/sh
2
3set -e
4
5
6case "$1" in
7  purge)
8    rm -f    /etc/bareos/tray-monitor.conf /etc/bareos/tray-monitor.conf.dist
9    rm -f -r /etc/bareos/tray-monitor.d/monitor/
10  ;;
11esac
12
13
14# dh_installdeb will replace this with shell code automatically
15# generated by other debhelper scripts.
16
17#DEBHELPER#
18
19exit 0
20