Re: [Puppet Users] Overriding package installation source

2012-03-23 Thread Walter Heck
You can use apt pinning in /etc/apt/preferences. Deploy a different version of that file on different hosts and you should be good :) On Thu, Mar 22, 2012 at 23:45, Kai Weber wrote: > Hi, > > I use a module (for Varnish in this case) which has the typical install, > service, package classes. > >

[Puppet Users] Overriding package installation source

2012-03-22 Thread Kai Weber
Hi, I use a module (for Varnish in this case) which has the typical install, service, package classes. -- modules/varnish/manifests/install.pp: class varnish::install { package { $varnish::params::package_name: ensure => installed, } } -- modules/project/mani