Add pmt type that wraps a gruel::msg_accepter.
[debian/gnuradio] / debian / libusrp.postinst
1 #! /bin/sh
2
3 set -e
4
5 if [ "$1" != "configure" ]; then
6         exit 0
7 fi
8
9 # Create usrp group for udev access
10 if ! getent group usrp >/dev/null; then
11     addgroup --system usrp
12 fi
13
14 ldconfig
15 exit 0