summaryrefslogtreecommitdiff
path: root/debian/libusrp.postrm
blob: 57cab9318e453c1124f1ba2155b6db70d716d22a (plain)
1
2
3
4
5
6
7
8
9
10
11
#! /bin/sh

set -e

if [ "$1" != "remove" ]; then
	exit 0
fi

rm -f /etc/udev/rules.d/40-usrp.rules
ldconfig
exit 0