File: kstreamripper.postrm

package info (click to toggle)
kstreamripper 0.3.4.debian1-2
  • links: PTS
  • area: main
  • in suites: lenny, squeeze
  • size: 464 kB
  • ctags: 148
  • sloc: python: 1,337; cpp: 605; sh: 71; makefile: 26
file content (19 lines) | stat: -rw-r--r-- 363 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#! /bin/sh
set -e

case "$1" in
       purge|remove|upgrade|failed-upgrade|abort-install|abort-upgrade|disappear)
          if [ -x "`which update-desktop-database 2>/dev/null`" ]; then 
              update-desktop-database -q
          fi
        ;;

    *)
        echo "postrm called with unknown argument \`$1'" >&2
        exit 1

esac

#DEBHELPER#

exit 0