#!/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#