summaryrefslogtreecommitdiff
path: root/debian/bigcouch.prerm
blob: bcb054dad00e0d5fd53c189b799dfeac7428a603 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/sh -e

case $1 in
    remove)
        if test -d "/etc/service/bigcouch"; then
            sv down bigcouch
            rm -r -f /etc/service/bigcouch
        fi
        ;;
esac

#DEBHELPER#