diff --git a/manifests/init.pp b/manifests/init.pp index a22dac9..8b49677 100644 --- a/manifests/init.pp +++ b/manifests/init.pp @@ -16,9 +16,15 @@ case $::osfamily { 'RedHat': { case $::operatingsystemmajrelease { - '6','7': { + '6': { $package_name_default = 'libcgroup' } + '7': { + $package_name_default = [ + 'libcgroup', + 'libcgroup-tools', + ] + } default: { fail('cgroups is only supported on EL 6 and 7.') }