in /var/lib/dpkg/info/gosa.postrm:

 for srv in apache apache-ssl; do
                dpkg -s $srv 2>&1 | grep -q "^Status:.*not-installed"
                if [ $? -eq 1 ]; then
                        servers="$srv $servers"
                fi
        done

looks like dpkg -s $srv 2>&1 | grep -q "^Status:.*not-installed" no
longer works as expected since these packages are deprecated theres no
info available and this causes the script to exit

i'm guessing its trying to find a way to remove the gosa.conf scripts
from server configs in /etc but this wouldnt remove
/etc/apache2/conf.d/gosa.conf anyway

since gosa now depends on apache2 it might be ok just to remove the
above lines and just attempt to remove the config

if [ -e /etc/apache2/conf.d/gosa.conf ]; then
    rm /etc/apache2/conf.d/gosa.conf
fi

-- 
package gosa 2.5.19-2 failed to install/upgrade: Unterprozess installiertes 
post-removal-Skript gab den Fehlerwert 1 zurück
https://bugs.launchpad.net/bugs/575268
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
[email protected]
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

Reply via email to