nDPI/packages/ubuntu/debian/postrm
2015-04-19 07:25:59 +02:00

13 lines
187 B
Bash

#!/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