Update Dutch translation
[pkg-k5-afs_openafs.git] / debian / openafs-dbserver.postrm
blob2c225dd1afca080bfac5161a3c2e3002cc301680
1 #! /bin/sh
3 set -e
5 # Purges the database and log files created by the package. We assume that
6 # it's safe to do this for database files since they're normally transferred
7 # via Ubik to other hosts.
8 if [ "$1" = 'purge' ] ; then
9 for file in prdb.DB0 prdb.DBSYS1 vldb.DB0 vldb.DBSYS1 ; do
10 rm -f "/var/lib/openafs/db/$file"
11 done
12 for file in PtLog PtLog.old VLLog VLLog.old ; do
13 rm -f "/var/log/openafs/$file"
14 done
17 #DEBHELPER#