system-config/modules/openssl/manifests/init.pp
Paul Belanger f6610dac2d Puppet lint fixes
Also, why is this its own class?  Seem like it could be merged with an
existing class or resolved with operating system packages.

Change-Id: I4589ce08de58462ec18696c2ed52c4fd7e07aaf6
Signed-off-by: Paul Belanger <paul.belanger@polybeacon.com>
Reviewed-on: https://review.openstack.org/15843
Approved: Clark Boylan <clark.boylan@gmail.com>
Reviewed-by: Clark Boylan <clark.boylan@gmail.com>
Tested-by: Jenkins
2012-11-12 18:58:07 +00:00

13 lines
139 B
Puppet

# Class: openssl
#
class openssl {
$packages = [
'openssl',
'ssl-cert',
]
package { $packages:
ensure => present;
}
}