Comment 4 for bug 321091

Revision history for this message
Ante Karamatić (ivoks) wrote : Re: Probleme de dependance

Actually, no... After having a better look at this one, problem is in /usr/share/bacula-director/postinst-common:

if [ -f $DSTDIR/$CONFIG.dpkg-tmp ]; then
    SOURCE=$DSTDIR/$CONFIG.dpkg-tmp
else
    SOURCE=$DSTDIR/$CONFIG
fi

This should be:

if [ -f $DSTDIR/$CONFIG.dpkg-tmp ]; then
    SOURCE=$DSTDIR/$CONFIG.dpkg-tmp
else
    SOURCE=$DEFCONFIGDIR/$CONFIG
fi

This is fixed in jaunty.