Merge pull request #210 from Mirantis/patch-package

Add nova::patch class to include in other commits requiring patches
This commit is contained in:
Dan Bode 2013-03-01 16:39:11 -08:00
commit 200443de30
1 changed files with 7 additions and 0 deletions

7
manifests/patch.pp Normal file
View File

@ -0,0 +1,7 @@
class nova::patch {
if !defined(Package['patch']) {
package { 'patch':
ensure => present
}
}
}