For Debian, I'd like to block packages from installation. For instance, I'd like puppet and superusers to be unable to install ruby1.8, even if a package with ruby1.8 in its dependency list is requested for installation: the puppet run would fail and so too would

# apt-get install ruby1.8

Is what I want possible? If so, what do I do?

link|improve this question

feedback

1 Answer

up vote 2 down vote accepted

This should work. Insert this text in your /etc/apt/preferences file :

Package: <packagename>
Pin: release *
Pin-Priority: -1
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.