Package: durep
Version: 0.8.1-5

Hi,

while upgrading durep, an error in the postinst script is reported:

Preparing to replace durep 0.8.1-4 (using .../archives/durep_0.8.1-5_all.deb) 
...
Unpacking replacement durep ...
Setting up durep (0.8.1-5) ...
/var/lib/dpkg/info/durep.postinst: line 8: [: missing `]'

The line
if [ "$1" = "configure" && ! test -e $CONFFILE.no-debconf-changes ] ; then
is not a valid test statement. You probably mean
if [ "$1" = "configure" ] && ! test -e $CONFFILE.no-debconf-changes; then
or
if [ "$1" = "configure" -a ! -e $CONFFILE.no-debconf-changes ]; then


regards
   Mario
-- 
<delta> talk softly and carry a keen sword


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

Reply via email to