From: mh Date: Fri, 18 Dec 2009 17:36:05 +0000 (+0100) Subject: enable that ssh auth-keys can be removed X-Git-Url: https://gitweb.fluxo.info/?a=commitdiff_plain;h=0f281c8d4d5250a5fb6159b603ed97f29ce6a010;p=puppet-sshd.git enable that ssh auth-keys can be removed --- diff --git a/manifests/ssh_authorized_key.pp b/manifests/ssh_authorized_key.pp index 2096099..9706018 100644 --- a/manifests/ssh_authorized_key.pp +++ b/manifests/ssh_authorized_key.pp @@ -1,5 +1,6 @@ # wrapper to have some defaults. define sshd::ssh_authorized_key( + $ensure = 'present', $type = 'ssh-dss', $key, $user = 'root', @@ -25,6 +26,7 @@ define sshd::ssh_authorized_key( } } ssh_authorized_key{$name: + ensure => $ensure, type => $type, key => $key, user => $real_user,