#!/bin/sh
# postrm, runs ldconfig on remove
set -e

case "$1" in
  remove)
    ldconfig
    ;;
  *)
    ;;
esac
 