#! /bin/sh set -e # summary of how this script can be called: # * `configure' # * `abort-upgrade' # * `abort-remove' `in-favour' # # * `abort-deconfigure' `in-favour' # `removing' # case "$1" in configure) set +e # ignore errors temporarily # find conffiles under /etc/asterisk belonging to asterisk-config # and chown them to user asterisk. dpkg-query -W -f='${Conffiles}\n' asterisk-config 2>/dev/null | \ sed -nr -e 's; (/etc/asterisk/.*) [0-9a-f]*;\1;p' | \ while read conffile; do chown asterisk: ${conffile} 2>/dev/null done # handle them in the end with a glob since it's way faster dpkg-statoverride --quiet --list '/etc/asterisk/*' | while read STAT; do chown `echo $STAT | cut -d' ' -f 1,2,4 | sed 's/ /:/'` \ 2>/dev/null done set -e ;; abort-upgrade|abort-remove|abort-deconfigure) ;; *) 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. exit 0