File: rcconf.postrm

package info (click to toggle)
rcconf 2.5
  • links: PTS
  • area: main
  • in suites: squeeze, wheezy
  • size: 96 kB
  • ctags: 34
  • sloc: perl: 949; makefile: 46; sh: 31
file content (20 lines) | stat: -rwxr-xr-x 316 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
#!/bin/sh
#
# This is the postrm script for the Debian GNU/Linux rcconf package
# Written by Atsushi Kamoshida <kamop@debian.org>
#

set -e

case "$1" in
  remove)
    ;;
  purge)
#    if [ -f /var/lib/rcconf/services ]; then
#      rm /var/lib/rcconf/services
#    fi
    rm -rf /var/lib/rcconf
    ;;
esac

exit 0