Puppet Class: ssh

Defined in:
manifests/init.pp

Overview

Installs and manages an SSH client

Requires Chocolatey or Cygwin on Windows.



4
5
6
7
8
9
10
11
12
13
14
# File 'manifests/init.pp', line 4

class ssh {
  include ssh::params

  if $ssh::params::client_package {
    ensure_packages([$ssh::params::client_package],
      {
        provider => $ssh::params::package_provider,
      }
    )
  }
}