diff -r eb67d9aa714f -r 3126da40d469 debian/canfestival-peak.postrm --- a/debian/canfestival-peak.postrm Mon Jul 27 09:18:04 2009 +0200 +++ b/debian/canfestival-peak.postrm Mon Jul 27 09:25:14 2009 +0200 @@ -1,23 +1,10 @@ #!/bin/sh -# postinst script for canfestival -# -# see: dh_installdeb(1) +# postrm script for canfestival 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 - DLL_LIST= +CF_CONFIG_DIR=/usr/share/CanFestival-3/objdictgen/ CF_CONFIG=/usr/share/CanFestival-3/objdictgen/canfestival_config.py CF_CONFIG_TEMP=/usr/share/CanFestival-3/objdictgen/canfestival_config_ori.py @@ -25,27 +12,26 @@ configure) ;; - remove|purge) - ldconfig - cd /usr/lib - cd /usr/lib - DLL_LIST= - FILES= - - for file in libcanfestival_can* - do - DLL_LIST="'$file',""$DLL_LIST" - done - - cat $CF_CONFIG_TEMP > $CF_CONFIG - echo "DLL_LIST=[$DLL_LIST]" >> $CF_CONFIG + purge|remove|upgrade|failed-upgrade|abort-install|abort-upgrade|disappear) + + if [ -d $CF_CONFIG_DIR ];then + ldconfig + # Find canfestival driver library in /usr/lib + cd /usr/lib + for file in `ls libcanfestival_can* 2>/dev/null` + do + DLL_LIST="'$file',""$DLL_LIST" + done + + # copy template config and add the DLL_LIST + # do this to display available canfestival plugin list choice in beremiz + cat $CF_CONFIG_TEMP > $CF_CONFIG + echo "DLL_LIST=[$DLL_LIST]" >> $CF_CONFIG + fi ;; - abort-upgrade|abort-remove|abort-deconfigure) - ;; - *) - echo "postinst called with unknown argument \`$1'" >&2 + echo "postrm called with unknown argument \`$1'" >&2 exit 1 ;; esac