Hi Walter,

How are you managing your sources file?  If you are simply managing the
sources.list with a file resource, you can "notify" an exec that would run
the apt-get update when a change is detected, such as:

file { "/etc/apt/sources.list":
   source => "puppet:///modules/source.list",
   notify => Exec["apt-update"];
}

exec { "apt-update":
   command => "/usr/bin/apt-get update",
}

This should help when you make changes to the sources.list file.

Another option is to use an apt pattern like the one here:
http://projects.puppetlabs.com/projects/puppet/wiki/Apt_Repositories_Patterns

This will remove your sources.list and instead create individual source
files in your /etc/apt/sources.list.d directory.  It sounds like you have
pinning setup, but I am not sure that I would want everything in my
backports to be installed at a higher priority.  Something like this might
be more appropriate:

Package: puppet
Pin: release a=backports
Pin-Priority: 900

Package: facter
Pin: release a=backports
Pin-Priority: 900

The above may need some tweaking, but should get you started.  Hope this
helps.


Zach


On Fri, Nov 5, 2010 at 9:52 AM, Walter Heck <walterh...@gmail.com> wrote:

> Hi all,
>
> I'm runnign debian lenny and that has puppet 0.24.5 in it. Lenny-
> backports ahs Puppet 2.6.2 in it, which is what I want. How do I make
> puppet update itself through puppet recipes? I already had it create
> an /etc/apt/preferences, where I pin backports at 900 and lenny stable
> at 700. Is that correct? I don't want to have to run apt-get update /
> apt-get upgrade / any other command on the nodes at all, but I don't
> know how :)
>
> Walter
>
> --
> You received this message because you are subscribed to the Google Groups
> "Puppet Users" group.
> To post to this group, send email to puppet-us...@googlegroups.com.
> To unsubscribe from this group, send email to
> puppet-users+unsubscr...@googlegroups.com<puppet-users%2bunsubscr...@googlegroups.com>
> .
> For more options, visit this group at
> http://groups.google.com/group/puppet-users?hl=en.
>
>

-- 
You received this message because you are subscribed to the Google Groups 
"Puppet Users" group.
To post to this group, send email to puppet-us...@googlegroups.com.
To unsubscribe from this group, send email to 
puppet-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/puppet-users?hl=en.

Reply via email to