#!/bin/sh # postinst script for naskpass # # see: dh_installdeb(1) set -e . /usr/share/debconf/confmodule . /usr/share/naskpass/naskconf case "$1" in configure) nask_update || true db_input high naskpass/activate || true db_go db_get naskpass/activate if [ "$RET" = "true" ]; then nask_activate || true if [ "x${ERRMSG}" != "x" ]; then echo "* ${ERRMSG}" >&2 nask_deactivate fi else nask_deactivate fi update-initramfs -u ;; abort-upgrade) db_purge ;; *) echo "postinst called with unknown argument \`$1'" >&2 exit 1 ;; esac # dh_installdeb will replace this with shell code automatically # generated by other debhelper scripts. #DEBHELPER# exit 0