#!/bin/sh -e case "$1" in disappear) rm -rf /etc/joe ;; purge|remove|upgrade|failed-upgrade|abort-install|abort-upgrade) ;; *) echo "postrm called with unknown argument '$1'" >&2 exit 1 ;; esac # Automatically added by dh_cruft/0.9.79 if [ "$1" = "purge" ] then # we need to glob, so no quotes rm -rf /etc/joe/ fi # End automatically added section