Install package version x.y or greater?
Currently, I'm installing packages using the package
type. I want to ensure that the MySQL package meets a minimum version, so I do the following:
package { 'mysql-community-server':
ensure => 5.6.24-2.el6,
}
On my MySQL hosts, I would like to have the option to manually upgrade the mysql-community-server to a newer version for testing. However, when I do this, Puppet complains that the version on the host is different then the version specified in the manifest.
Can I tell the package
type to ensure that the package is at a specified version or newer?