#!/bin/sh

set -e

case $1 in
  preinst)
    exit 0
    ;;
  postinst)
    depmod
    ;;
  prerm)
    exit 0
    ;;
  postrm)
    exit 0
    ;;
esac
