Initialize Tizen 2.3
[framework/system/pciutils.git] / debian / postinst
1 #! /bin/sh
2 # postinst script for pciutils
3
4 set -e
5
6 case "$1" in
7 configure)
8         for ext in new neww old
9         do
10                 rm -f /usr/share/misc/pci.ids.$ext
11         done
12         ;;
13 abort-upgrade|abort-remove|abort-deconfigure)
14         ;;
15 *)
16         echo "postinst called with unknown argument \`$1'" >&2
17         exit 1
18         ;;
19 esac
20
21 #DEBHELPER#
22
23 exit 0