Hi

> If you have a sytem running both up2date and yum (to keep a current
> redhat repo) and want to install packages using either/or - is there a
> way to specify which app to use for package control? I would like to
> be able to control on a per package basis if possible. Or should I
> just bite the bullet and configure yum to handle the redhat updating
> rather than up2date?


the later would be better, will lead to less headache and definitely the
way to go.

However you can define per package definition the provider puppet should
use:

package{'i-am-a-yum-package':
        ensure => present,
        provider => yum,
}


package{'i-am-a-up2date-package':
        ensure => present,
        provider => up2date,
}

cheers pete

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Puppet Users" group.
To post to this group, send email to puppet-users@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