Report abuse

1
2
3
4
5
6
7
8
9
                    ssh_authorized_key { "$name@puppet":
                        ensure  => $ensure,
                        options => $sshauthoptions,
                        key     => $sshauthkey ? {
                            true    => template("$sshauthkeyroot/$name.pub.erb"),
                            default => $sshauthkey, 
                        },
                        target  => "$homeroot/$name/.ssh/authorized_keys",
                        type    => $sshauthtype,