mirror of
https://github.com/vel21ripn/nDPI.git
synced 2026-05-02 17:00:16 +00:00
13 lines
187 B
Bash
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
|