summaryrefslogtreecommitdiff
path: root/manifests/site.pp
diff options
context:
space:
mode:
authorSilvio Rhatto <rhatto@riseup.net>2020-12-05 14:09:38 -0300
committerSilvio Rhatto <rhatto@riseup.net>2020-12-05 14:09:38 -0300
commit762807dcfa316ec957da1349a713cdf6ab747d36 (patch)
treec3a94828ee6ce39b68a533a2668efa660cb8dbdc /manifests/site.pp
parentfc9a09da4eebb307e4d273b4c0999c5ee7f9bd49 (diff)
downloadpuppet-apache-762807dcfa316ec957da1349a713cdf6ab747d36.tar.gz
puppet-apache-762807dcfa316ec957da1349a713cdf6ab747d36.tar.bz2
Feat: adds sshkey_type param
Diffstat (limited to 'manifests/site.pp')
-rw-r--r--manifests/site.pp2
1 files changed, 2 insertions, 0 deletions
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,
}