Solaar/packaging/debian/solaar.postinst

13 lines
200 B
Bash

#!/bin/sh
set -e
# shamelessly copied from usbmuxd.postinst
# creating plugdev group if he isn't already there
if ! getent group plugdev >/dev/null; then
addgroup --system plugdev
fi
#DEBHELPER#