aboutsummaryrefslogtreecommitdiff
path: root/packages/ubuntu/debian/postrm
blob: 8ea16af2d367b3097b09903c3120a62b85ee2d05 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/sh -e

set -e

#\/bin/rm /etc/ld.so.conf.d/nprobe.conf
/sbin/ldconfig

# Not needed: upstart does it
if [ "$1" = "purge" ] ; then
  update-rc.d nprobe remove >/dev/null
fi

exit 0