#!/bin/sh

case "$1" in
  configure)
    # continue below
  ;;

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

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

/sbin/ldconfig > /dev/null 2>&1

# Service restart (driver reload) happens in pfring-dkms postinst

exit 0
