Puppet Class: yumng
- Defined in:
- manifests/init.pp
Overview
Hacked yum package provider to enforce version locks in yum land Ensures we can ‘yum update` a box without bypassing puppet’s enforced versions
3 4 5 6 7 8 9 |
# File 'manifests/init.pp', line 3
class yumng {
# We heavily depend on versionlock
package {
['yum', 'yum-plugin-versionlock']:
ensure => latest;
}
}
|