From: Silvio Rhatto Date: Sat, 5 Dec 2020 17:09:38 +0000 (-0300) Subject: Feat: adds sshkey_type param X-Git-Url: https://gitweb.fluxo.info/?a=commitdiff_plain;h=762807dcfa316ec957da1349a713cdf6ab747d36;p=puppet-apache.git Feat: adds sshkey_type param --- diff --git a/manifests/site.pp b/manifests/site.pp index dc7cd95..39d83de 100644 --- a/manifests/site.pp +++ b/manifests/site.pp @@ -20,6 +20,7 @@ define apache::site( $password = '*', $comment = '', $sshkey = absent, + $sshkey_type = absent, $sshkey_options = [], $groups = '', $shell = '/bin/false', @@ -76,6 +77,7 @@ define apache::site( ticket => $ticket, groups => $groups, sshkey => $sshkey, + sshkey_type => $sshkey_type, sshkey_options => $sshkey_options, shell => $shell, } diff --git a/manifests/site/user.pp b/manifests/site/user.pp index b1fe071..90edf7c 100644 --- a/manifests/site/user.pp +++ b/manifests/site/user.pp @@ -7,6 +7,7 @@ define apache::site::user( $password = '*', $comment = '', $sshkey = absent, + $sshkey_type = absent, $sshkey_options = [], $groups = '', $shell = '/bin/false', @@ -29,6 +30,7 @@ define apache::site::user( ticket => $ticket, groups => $groups, sshkey => $sshkey, + sshkey_type => $sshkey_type, sshkey_options => $sshkey_options, shell => $shell, ensure => present,