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

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

set -e


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


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

#DEBHELPER#

exit 0