#! /bin/sh set -e if [ "$1" = "purge" ]; then for i in /etc/boxbackup/raidfile.conf /etc/boxbackup/bbstored.conf; do if [ -e $i ]; then rm -f $i fi if which ucf >/dev/null; then ucf -p $i fi done dpkg-statoverride --remove /etc/boxbackup/bbstored || true if which deluser >/dev/null; then getent passwd bbstored >/dev/null && deluser bbstored getent group bbstored >/dev/null && delgroup bbstored fi fi #DEBHELPER#