Solaar/packaging/debian/solaar.postinst

13 lines
253 B
Bash

#!/bin/sh
set -e
# shamelessly copied from usbmuxd.postinst
# creating plugdev group if it's not already present on the system
if ! getent group plugdev >/dev/null; then
groupadd --system --force plugdev || addgroup --system plugdev
fi
#DEBHELPER#