Puppet Class: ssh

Defined in:
manifests/init.pp

Overview

Class: ssh

Full description of class ssh here.

Parameters

sample_parameter

Explanation of what this parameter affects and what it defaults to.

Parameters:

  • package (Any) (defaults to: 'homebrew/dupes/openssh')
  • keypath (Any) (defaults to: "/Users/${::boxen_user}/.ssh/id_ed25519")


10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
# File 'manifests/init.pp', line 10

class ssh (
  $package = 'homebrew/dupes/openssh',
  $keypath = "/Users/${::boxen_user}/.ssh/id_ed25519"
) {
  package { $package:
    require => Class['::packages']
  } ->
  exec { 'remove stale SSH key':
    command => "rm -f ${keypath}.pub",
    unless  => ["test -e ${keypath}", 'ssh-add -l | grep ED25519']
  } ->
  ssh_key { $::luser:
    require => Class['::gpg']
  } ->
  github_ssh_key { "${keypath}.pub": } ->
  exec { "ssh-add ${keypath}":
    unless   => 'ssh-add -l | grep ED25519',
    provider => 'shell',
    user     => $::boxen_user
  } ->
  file { $keypath:
    ensure => absent
  }
}