summaryrefslogtreecommitdiff
path: root/debian/libusrp0.postinst
blob: 562b9232e5d8dea74a3215c018bbcbd44bcaa456 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#! /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

#DEBHELPER#

exit 0