summaryrefslogtreecommitdiff
path: root/debian/libusrp.postinst
blob: 6ed2f9ebdd172874a86070e2dde4a87718f1f17d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#! /bin/sh

set -e

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

# Create usrp group for udev access
if ! getent group usrp >/dev/null; then
    addgroup --system usrp
fi

exit 0