File: fwlogwatch.postrm

package info (click to toggle)
fwlogwatch 1.4-3
  • links: PTS
  • area: main
  • in suites: bullseye
  • size: 996 kB
  • sloc: ansic: 5,288; lex: 1,747; php: 706; sh: 437; makefile: 160
file content (22 lines) | stat: -rw-r--r-- 481 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/bin/sh
# Copyright 2001 Alberto Gonzalez Iniesta <agi@agi.as>
# Licensed under the GNU General Public License, version 2.  See the file
# /usr/share/common-licenses/GPL or <http://www.gnu.org/copyleft/gpl.txt>.
# 
set -e
test $DEBIAN_SCRIPT_DEBUG && set -v -x

case "$1" in
    purge)
        # For some reason /etc/fwlogwatch does not disappear when purging the package
	rm -rf /etc/fwlogwatch || true
	rm -f /etc/default/fwlogwatch || true
    ;;

esac


#DEBHELPER#


exit 0