Puppet Class: ipa::master

Defined in:
manifests/master.pp

Overview

Class: ipa::master

This class configures an IPA master

Parameters:

Actions:

Requires: Exported resources, puppetlabs/puppetlabs-firewall, puppetlabs/stdlib

Sample Usage:

Parameters:

  • svrpkg (Any) (defaults to: {})
  • dns (Any) (defaults to: {})
  • realm (Any) (defaults to: {})
  • domain (Any) (defaults to: {})
  • ipaservers (Any) (defaults to: [])
  • loadbalance (Any) (defaults to: {})
  • adminpw (Any) (defaults to: {})
  • dspw (Any) (defaults to: {})
  • sudo (Any) (defaults to: {})
  • sudopw (Any) (defaults to: {})
  • automount (Any) (defaults to: {})
  • autofs (Any) (defaults to: {})
  • kstart (Any) (defaults to: {})
  • sssd (Any) (defaults to: {})


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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
# File 'manifests/master.pp', line 13

class ipa::master (
  $svrpkg      = {},
  $dns         = {},
  $realm       = {},
  $domain      = {},
  $ipaservers  = [],
  $loadbalance = {},
  $adminpw     = {},
  $dspw        = {},
  $sudo        = {},
  $sudopw      = {},
  $automount   = {},
  $autofs      = {},
  $kstart      = {},
  $sssd        = {}
) {

  Ipa::Serverinstall[$::fqdn] -> Service['ipa'] -> Ipa::Hostadd <<| |>> -> Ipa::Replicareplicationfirewall <<| tag == "ipa-replica-replication-firewall-${ipa::master::domain}" |>> -> Ipa::Replicaprepare <<| tag == "ipa-replica-prepare-${ipa::master::domain}" |>>

  Ipa::Replicareplicationfirewall <<| tag == "ipa-replica-replication-firewall-${ipa::master::domain}" |>>
  Ipa::Replicaprepare <<| tag == "ipa-replica-prepare-${ipa::master::domain}" |>>
  Ipa::Hostadd <<| |>>

  if $ipa::master::sudo {
    Ipa::Configsudo <<| |>> {
      name    => $::fqdn,
      os      => "${::osfamily}${::lsbmajdistrelease}",
      require => Ipa::Serverinstall[$::fqdn]
    }
  }

  if $ipa::master::automount {
    if $ipa::master::autofs {
      realize Service["autofs"]
      realize Package["autofs"]
    }

    Ipa::Configautomount <<| |>> {
      name    => $::fqdn,
      os      => $::osfamily,
      notify  => Service["autofs"],
      require => Ipa::Serverinstall[$::fqdn]
    }
  }

  $principals = suffix(prefix([$::fqdn], "host/"), "@${ipa::master::realm}")

  if $::osfamily != 'RedHat' {
    fail("Cannot configure an IPA master server on ${::operatingsystem} operating systems. Must be a RedHat-like operating system.")
  }

  realize Package[$ipa::master::svrpkg]

  if $ipa::master::sssd {
    realize Service["sssd"]
  }

  if $ipa::master::kstart {
    realize Package["kstart"]
  }

  realize Service['ipa']

  $dnsopt = $ipa::master::dns ? {
    true    => '--setup-dns',
    default => ''
  }

  ipa::serverinstall { "$::fqdn":
    realm   => $ipa::master::realm,
    domain  => $ipa::master::domain,
    adminpw => $ipa::master::adminpw,
    dspw    => $ipa::master::dspw,
    dnsopt  => $ipa::master::dnsopt,
    require => Package[$ipa::master::svrpkg]
  }

  firewall { "101 allow IPA master TCP services (http,https,kerberos,kpasswd,ldap,ldaps)":
    ensure => 'present',
    action => 'accept',
    proto  => 'tcp',
    dport  => ['80','88','389','443','464','636']
  }

  firewall { "102 allow IPA master UDP services (kerberos,kpasswd,ntp)":
    ensure => 'present',
    action => 'accept',
    proto  => 'udp',
    dport  => ['88','123','464']
  }

  @@ipa::replicapreparefirewall { "$::fqdn":
    source => $::ipaddress,
    tag    => "ipa-replica-prepare-firewall-${ipa::master::domain}"
  }

  @@ipa::masterreplicationfirewall { "$::fqdn":
    source => $::ipaddress,
    tag    => "ipa-master-replication-firewall-${ipa::master::domain}"
  }

  @@ipa::masterprincipal { "$::fqdn":
    realm => $ipa::master::realm,
    tag   => "ipa-master-principal-${ipa::master::domain}"
  }

  @@ipa::clientinstall { "$::fqdn":
    masterfqdn => $::fqdn,
    domain     => $ipa::master::domain,
    realm      => $ipa::master::realm,
    adminpw    => $ipa::master::adminpw,
    otp        => '', 
    mkhomedir  => '', 
    ntp        => ''
  }

  if $ipa::master::sudo {
    @@ipa::configsudo { "$::fqdn":
      masterfqdn => $::fqdn,
      domain     => $ipa::master::domain,
      adminpw    => $ipa::master::adminpw,
      sudopw     => $ipa::master::sudopw
    }
  }

  if $ipa::master::automount {
    @@ipa::configautomount { "$::fqdn":
      masterfqdn => $::fqdn,
      os         => $::osfamily,
      domain     => $ipa::master::domain,
      realm      => $ipa::master::realm
    }
  }

  if $ipa::master::loadbalance {
    ipa::loadbalanceconf { "master-${::fqdn}":
      domain     => $ipa::master::domain,
      ipaservers => $ipa::master::ipaservers,
      mkhomedir  => $ipa::master::mkhomedir,
      require    => Ipa::Serverinstall[$::fqdn]
    }
  }
}