diff options
Diffstat (limited to 'debian/zsh-dbg.postinst')
-rw-r--r-- | debian/zsh-dbg.postinst | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/debian/zsh-dbg.postinst b/debian/zsh-dbg.postinst new file mode 100644 index 000000000..0bd46c118 --- /dev/null +++ b/debian/zsh-dbg.postinst @@ -0,0 +1,20 @@ +#!/bin/sh + +set -e + +case "$1" in + (configure) + : + ;; + (abort-upgrade|abort-remove|abort-deconfigure) + exit 0 + ;; + (*) + echo "postinst called with unknown argument \`$1'" >&2 + exit 0 + ;; +esac + +#DEBHELPER# + +exit 0 |