]> gitweb.fluxo.info Git - puppet-apache.git/commitdiff
Feat: adds sshkey_type param
authorSilvio Rhatto <rhatto@riseup.net>
Sat, 5 Dec 2020 17:09:38 +0000 (14:09 -0300)
committerSilvio Rhatto <rhatto@riseup.net>
Sat, 5 Dec 2020 17:09:38 +0000 (14:09 -0300)
manifests/site.pp
manifests/site/user.pp

index dc7cd952f90a32b9b095a9fcffe0ffda160f933d..39d83de4f3edd5e498c3fc011b55d2c7079d1cc3 100644 (file)
@@ -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,
   }
index b1fe071102de3075d80fd8f3654d509196409ca5..90edf7c7ced4b3641eb296335ac55b6001647768 100644 (file)
@@ -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,