Puppet Class: sssd::install

Defined in:
manifests/install.pp

Overview

Class: sssd::install

This class installs sssd. It is not intended to be called directly.

Authors



10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# File 'manifests/install.pp', line 10

class sssd::install (
) {

  if $caller_module_name != $module_name {
    fail("Use of private class ${name} by ${caller_module_name}")
  }

  package { 'sssd':
    ensure => 'latest',
    notify => Class['sssd::service'],
  }

  package { 'sssd-client':
    ensure => 'latest',
    notify => Class['sssd::service'],
  }

}