Hi,

live-config_4.0~alpha30-1_all.deb trying to decide is KDE installed or not by
///////////////////////////
Init ()
{
    # Checking if package is installed or already configured
    if [ ! -e /usr/share/kde4 ] || \
       [ -e /var/lib/live/config/kde-services ]
    then
        exit 0
    fi

    echo -n " kde-services"
}
/////////////////////////////////////

But if you installed vlc in a GNOME distribution , vlc creates /usr/share/kde4 directory. And live-config just checks /usr/share/kde4 directory exists or not to config kde-services. It does not check kwriteconfig exists or not.
This breaks configuration at boot time by an error.

I suggest to check /usr/bin/kwriteconfig exists or not to decide to config kde-services by

///////////////////////////
Init ()
{
    # Checking if package is installed or already configured
    if [ ! -e /usr/bin/kwriteconfig ] || \
       [ -e /var/lib/live/config/kde-services ]
    then
        exit 0
    fi

    echo -n " kde-services"
}
/////////////////////////////////////


Regards


--
To UNSUBSCRIBE, email to debian-live-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/52bfedd4.4060...@adak.com.tr

Reply via email to