Puppet Class: realmd::join::keytab

Defined in:
manifests/join/keytab.pp

Overview

Class realmd::join::keytab

This class is called from realmd for performing a passwordless AD join with a Kerberos keytab



6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
# File 'manifests/join/keytab.pp', line 6

class realmd::join::keytab {
  $_domain            = $realmd::domain
  $_domain_join_user  = $realmd::domain_join_user
  $_krb_keytab        = $realmd::krb_keytab
  $_krb_config_file   = $realmd::krb_config_file
  $_krb_config        = $realmd::krb_config
  $_manage_krb_config = $realmd::manage_krb_config
  $_ou                = $realmd::ou

  $_krb_config_final = deep_merge({ 'libdefaults' => { 'default_realm' => upcase($facts['networking']['domain']) } }, $_krb_config)

  file { 'krb_keytab':
    path   => $_krb_keytab,
    owner  => 'root',
    group  => 'root',
    mode   => '0400',
    before => Exec['run_kinit_with_keytab'],
  }

  if $_manage_krb_config {
    file { 'krb_configuration':
      ensure  => file,
      path    => $_krb_config_file,
      owner   => 'root',
      group   => 'root',
      mode    => '0644',
      content => template('realmd/krb5.conf.erb'),
      before  => Exec['run_kinit_with_keytab'],
    }
  }

  exec { 'run_kinit_with_keytab':
    path    => '/usr/bin:/usr/sbin:/bin',
    command => "kinit -kt ${_krb_keytab} ${_domain_join_user}",
    unless  => "klist -k /etc/krb5.keytab | grep -i '${facts['networking']['hostname'][0,15]}@${_domain}'",
    before  => Exec['realm_join_with_keytab'],
  }

  if $_ou != undef {
    $_realm_args = [$_domain, "--computer-ou=${_ou}"]
  } else {
    $_realm_args = [$_domain,]
  }

  $_args = join($_realm_args, ' ')

  exec { 'realm_join_with_keytab':
    path    => '/usr/bin:/usr/sbin:/bin',
    command => "realm join ${_args}",
    unless  => "klist -k /etc/krb5.keytab | grep -i '${facts['networking']['hostname'][0,15]}@${_domain}'",
    require => Exec['run_kinit_with_keytab'],
  }
}