Comment 0 for bug 581886

Revision history for this message
Ganton (ganton) wrote : Kubuntu updates do not respect "hold" state of packages.

In some systems, you have to put a package "on hold" to avoid it is updated. Then, if you execute
    sudo apt-get update && sudo apt-get dist-upgrade
it tells you that those packages are "on hold" and are not going to be updated. Correct. But sooner or later appears the automatic graphical updating tool appears (I suppose it's Kpackagekit or "kubuntu-notification-helper") and tells you to update the package! And this keeps happening from time to time, it doesn't learn or work OK.

WHAT IT IS EXPECTED TO HAPPEN
That the automatic graphical updating tool worked like the CLI tool and knew when that a package "on hold" must not be updated.

KUBUNTU VERSION:
Kubuntu 10.04

MORE INFORMATION:
    To put a package to hold:
    echo "package_name hold" | sudo dpkg --set-selections

    to 'unhold' it:
    echo "package_name install" | sudo dpkg --set-selecions

    To see which are your packages 'on hold':
    dpkg --get-selections | grep hold