diff --git a/manifests/knownhosts.pp b/manifests/knownhosts.pp index cd7cf58..405a182 100644 --- a/manifests/knownhosts.pp +++ b/manifests/knownhosts.pp @@ -1,21 +1,21 @@ # @summary -# This class manged knownhosts if collect is enable +# This class manages knownhosts if collection is enabled. # # @param collect_enabled -# Enabled collect +# Enable collection # # @param storeconfigs_group # Define the hostkeys group storage # class ssh::knownhosts( Boolean $collect_enabled = $ssh::params::collect_enabled, Optional[String] $storeconfigs_group = undef, ) inherits ssh::params { if ($collect_enabled) { if $storeconfigs_group { Sshkey <<| tag == "hostkey_${storeconfigs_group}" |>> } else { Sshkey <<| |>> } } }