Welcome to mirror list, hosted at ThFree Co, Russian Federation.

bareos-director.postrm « debian - github.com/bareos/bareos.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4c3cb75b6618e693a3c335a960551333026b6a5f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/bin/sh

set -e


case "$1" in
  purge)
    rm -f  /etc/bareos/bareos-dir.conf /etc/bareos/bareos-dir.conf.dist
    rm -rf /etc/bareos/bareos-dir.d/
    rm -rf /etc/bareos/bareos-dir-export/
  ;;
esac


# dh_installdeb will replace this with shell code automatically
# generated by other debhelper scripts.

#DEBHELPER#

exit 0