Puppet Class: system::sshd::subsystem

Defined in:
manifests/sshd/subsystem.pp

Overview

Parameters:

  • config (Any) (defaults to: undef)


1
2
3
4
5
6
7
8
9
# File 'manifests/sshd/subsystem.pp', line 1

class system::sshd::subsystem (
  $config = undef
) {
  if $config {
    include augeasproviders
    $defaults = {}
    create_resources(sshd_config_subsystem, $config, $defaults)
  }
}