summaryrefslogtreecommitdiff
path: root/debian/boxbackup-client.postrm
blob: 5272f93e9963b8d035a9ed8f0a955bbd3bedbc9d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/bin/sh
set -e

if [ "$1" = "purge" ]; then
	    for i in /etc/boxbackup/bbackupd.conf /etc/boxbackup/bbackupd/notifyadmin; do
		if [ -e $i ]; then
		    rm -f $i
		fi
		if which ucf >/dev/null; then
		    ucf -p $i
		fi
	    done
fi

#DEBHELPER#