File: postrm

package info (click to toggle)
hwtools 0.8-5
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 1,388 kB
  • ctags: 1,143
  • sloc: ansic: 6,031; asm: 2,223; makefile: 277; sh: 122; csh: 42
file content (12 lines) | stat: -rw-r--r-- 188 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/sh -e

if [ "$1" = "purge" ]; then
    update-rc.d hwtools remove >/dev/null
    if [ -f /etc/rc.boot/hwtools ]; then
        rm /etc/rc.boot/hwtools
    fi
fi

#DEBHELPER#

exit 0