Puppet Class: realmd::sssd::config

Defined in:
manifests/sssd/config.pp

Overview

Class realmd::sssd::config

This class is called from realmd for SSSD service configuration.



5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# File 'manifests/sssd/config.pp', line 5

class realmd::sssd::config {
  if $realmd::manage_sssd_config {
    $_sssd_config = $realmd::sssd_config

    file { $realmd::sssd_config_file:
      content => template('realmd/sssd.conf.erb'),
      owner   => 'root',
      group   => 'root',
      mode    => '0600',
      notify  => Exec['force_config_cache_rebuild'],
    }

    exec { 'force_config_cache_rebuild':
      path        => '/usr/bin:/usr/sbin:/bin',
      command     => "rm -f ${realmd::sssd_config_cache_file}",
      refreshonly => true,
    }
  }
}