#!/bin/sh set -e case "$1" in (upgrade|install) : ;; (abort-upgrade|abort-remove|abort-deconfigure) exit 0 ;; (*) echo "postinst called with unknown argument \`$1'" >&2 exit 0 ;; esac for conffile in zlogin zlogout zprofile zshenv zshrc; do dpkg-maintscript-helper rm_conffile /etc/zsh-beta/$conffile 5 -- "$@" done #DEBHELPER#