1#!/bin/sh -e
2
3case "$1" in
4    configure)
5	# continue below
6    ;;
7
8    abort-upgrade|abort-remove|abort-deconfigure)
9	exit 0
10    ;;
11
12    *)
13	echo "postinst called with unknown argument \`$1'" >&2
14	exit 0
15    ;;
16esac
17
18umask 022
19
20echo "Rebuilding ld cache..."
21/sbin/ldconfig
22
23exit 0
24