On Monday, September 16, 2013 1:57:19 AM UTC-5, Yan Xiaofei wrote: > > Hello > > I have some kernel moduls rpms related to specific kernel version. > Is there a method to control kernel versions by puppet? >
You can use Puppet to install and remove kernel packages. You can control what version of a given package must be installed. You can use facts to determine which kernel version is currently running -- there are built-in facts for this. > > Another question is : > Some time we need upgrade pkg version and downgrade pkg version, > is possible by puppet? > > You can specify specific package versions that are supposed to be installed, and Puppet will attempt to achieve it. As with most things related to packages, this works best when the underlying package manager relies on a package repository somewhere, as many do. You can also ask that Puppet ensure the latest available version of a given package is installed. Refer to the docs for the Package resource type: http://docs.puppetlabs.com/references/3.stable/type.html#package John -- You received this message because you are subscribed to the Google Groups "Puppet Users" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/puppet-users. For more options, visit https://groups.google.com/groups/opt_out.
