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

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

#set -x
set -e

. /usr/share/debconf/confmodule

if [ "$1" = remove ]; then
    file="/usr/lib/univention-uninstall/63univention-bareos.uinst"
    if [ -r "$file" ]; then
        cp "$file" /usr/lib/univention-install/
    fi
fi

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

#DEBHELPER#

exit 0