#!/bin/sh # postinst script for gutenbach-remctl # # see: dh_installdeb(1) set -e # summary of how this script can be called: # * `configure' # * `abort-upgrade' # * `abort-remove' `in-favour' # # * `abort-remove' # * `abort-deconfigure' `in-favour' # `removing' # # for details, see http://www.debian.org/doc/debian-policy/ or # the debian-policy package case "$1" in configure|reconfigure) chmod +x /usr/lib/gutenbach/remctl/cd-cddb chmod +x /usr/lib/gutenbach/remctl/cd-cddb-get chmod +x /usr/lib/gutenbach/remctl/cd-play chmod +x /usr/lib/gutenbach/remctl/status-clear chmod +x /usr/lib/gutenbach/remctl/status-get chmod +x /usr/lib/gutenbach/remctl/volume-down chmod +x /usr/lib/gutenbach/remctl/volume-get chmod +x /usr/lib/gutenbach/remctl/volume-help chmod +x /usr/lib/gutenbach/remctl/volume-is-muted chmod +x /usr/lib/gutenbach/remctl/volume-mute chmod +x /usr/lib/gutenbach/remctl/volume-set chmod +x /usr/lib/gutenbach/remctl/volume-show chmod +x /usr/lib/gutenbach/remctl/volume-up chmod +x /usr/lib/gutenbach/remctl/volume-zephyr ;; 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. #DEBHELPER# exit 0