Solaar/packaging/debian/solaar.postinst

14 lines
273 B
Bash

#!/bin/sh
set -e
. /usr/share/debconf/confmodule
db_get solaar/use_plugdev_group
if test "$RET" = true; then
# make sure the group exists if required
if ! getent group plugdev >/dev/null; then
groupadd --system plugdev || addgroup --system plugdev
fi
fi
#DEBHELPER#