#!/bin/sh
# postinst script for infnoise

set -e

#DEBHELPER#

case "$1" in
    configure)
	udevadm trigger --action=add --attr-match=idVendor=0403 --attr-match=idProduct=6015 || true
    ;;

    abort-upgrade|abort-remove|abort-deconfigure)
    ;;

    *)
        echo "postinst called with unknown argument \`$1'" >&2
        exit 1
    ;;
esac

exit 0
