File: postrm

package info (click to toggle)
sing 1.1-13etch1
  • links: PTS
  • area: main
  • in suites: etch
  • size: 2,480 kB
  • ctags: 2,092
  • sloc: ansic: 20,745; sh: 4,857; makefile: 718; yacc: 234; lex: 203
file content (19 lines) | stat: -rw-r--r-- 379 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
#!/bin/sh


if [ "$1" = purge ]; then
	if command -v suidunregister >/dev/null 2>&1 && [ -e /etc/suid.conf ]; then
       		suidunregister -s sing /usr/bin/sing
	fi
fi

if [ "$1" = "purge" -a -e /usr/share/debconf/confmodule ]; then
    # Source debconf library.
        . /usr/share/debconf/confmodule
    # Remove my changes to the db.
        db_purge
fi

#DEBHELPER#

exit 0