From f6610dac2da7d4f188281f9a19906420bfa72db8 Mon Sep 17 00:00:00 2001 From: Paul Belanger Date: Sun, 11 Nov 2012 14:17:30 -0500 Subject: [PATCH] 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 Reviewed-on: https://review.openstack.org/15843 Approved: Clark Boylan Reviewed-by: Clark Boylan Tested-by: Jenkins --- modules/openssl/manifests/init.pp | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/modules/openssl/manifests/init.pp b/modules/openssl/manifests/init.pp index 190d71fbc7..1746de8f1a 100644 --- a/modules/openssl/manifests/init.pp +++ b/modules/openssl/manifests/init.pp @@ -1,5 +1,12 @@ +# Class: openssl +# class openssl { - package { ["openssl", "ssl-cert"]: + $packages = [ + 'openssl', + 'ssl-cert', + ] + + package { $packages: ensure => present; } }