Puppet Class: ipa

Inherits:
ipa::params
Defined in:
manifests/init.pp

Overview

Class: ipa

Manages IPA masters, replicas and clients.

Parameters

$master = false - Configures a server to be an IPA master LDAP/Kerberos node.
$replica = false - Configures a server to be an IPA replica LDAP/Kerberos node.
$client = false - Configures a server to be an IPA client.
$cleanup = false - Removes IPA specific packages.
$domain = undef - Defines the LDAP domain.
$realm = undef - Defines the Kerberos realm.
$adminpw = undef - Defines the IPA administrative user password.
$dspw = undef - Defines the IPA directory services password.
$otp = undef - Defines an IPA client one-time-password.
$dns = false - Controls the option to configure a DNS zone with the IPA master setup.
$loadbalance = false - Controls the option to include any additional hostnames to be used in a load balanced IPA client configuration.
$ipaservers = [] - Defines an array of additional hostnames to be used in a load balanced IPA client configuration.
$mkhomedir = false - Controls the option to create user home directories on first login.
$ntp = false - Controls the option to configure NTP on a client.
$kstart = true - Controls the installation of kstart.
$desc = '' - Controls the description entry of an IPA client.
$locality = '' - Controls the locality entry of an IPA client.
$location = '' - Controls the location entry of an IPA client.
$sssdtools = true - Controls the installation of the SSSD tools package.
$sssdtoolspkg = 'sssd-tools' - SSSD tools package.
$sssd = true - Controls the option to start the SSSD service.
$sudo = false - Controls the option to configure sudo in LDAP.
$sudopw = undef - Defines the sudo user bind password.
$debiansudopkg = true - Controls the installation of the Debian sudo-ldap package.
$automount = false - Controls the option to configure automounter maps in LDAP.
$autofs = false - Controls the option to start the autofs service and install the autofs package.
$svrpkg = 'ipa-server' - IPA server package.
$clntpkg = 'ipa-client' - IPA client package.
$ldaputils = true - Controls the instalation of the LDAP utilities package.
$ldaputilspkg = 'openldap-clients' - LDAP utilities package.

Variables

Examples

Authors

Parameters:

  • master (Any) (defaults to: $ipa::params::master)
  • replica (Any) (defaults to: $ipa::params::replica)
  • client (Any) (defaults to: $ipa::params::client)
  • cleanup (Any) (defaults to: $ipa::params::cleanup)
  • domain (Any) (defaults to: downcase($ipa::params::domain))
  • realm (Any) (defaults to: upcase($ipa::params::realm))
  • ipaservers (Any) (defaults to: $ipa::params::ipaservers)
  • loadbalance (Any) (defaults to: $ipa::params::loadbalance)
  • adminpw (Any) (defaults to: $ipa::params::adminpw)
  • dspw (Any) (defaults to: $ipa::params::dspw)
  • otp (Any) (defaults to: $ipa::params::otp)
  • dns (Any) (defaults to: $ipa::params::dns)
  • mkhomedir (Any) (defaults to: $ipa::params::mkhomedir)
  • ntp (Any) (defaults to: $ipa::params::ntp)
  • kstart (Any) (defaults to: $ipa::params::kstart)
  • desc (Any) (defaults to: $ipa::params::desc)
  • locality (Any) (defaults to: $ipa::params::locality)
  • location (Any) (defaults to: $ipa::params::location)
  • sudo (Any) (defaults to: $ipa::params::sudo)
  • sudopw (Any) (defaults to: $ipa::params::sudopw)
  • debiansudopkg (Any) (defaults to: $ipa::params::debiansudopkg)
  • automount (Any) (defaults to: $ipa::params::automount)
  • autofs (Any) (defaults to: $ipa::params::autofs)
  • svrpkg (Any) (defaults to: $ipa::params::svrpkg)
  • clntpkg (Any) (defaults to: $ipa::params::clntpkg)
  • ldaputils (Any) (defaults to: $ipa::params::ldaputils)
  • ldaputilspkg (Any) (defaults to: $ipa::params::ldaputilspkg)
  • sssdtools (Any) (defaults to: $ipa::params::sssdtools)
  • sssdtoolspkg (Any) (defaults to: $ipa::params::sssdtoolspkg)
  • sssd (Any) (defaults to: $ipa::params::sssd)


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
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
# File 'manifests/init.pp', line 50

class ipa (
  $master        = $ipa::params::master,
  $replica       = $ipa::params::replica,
  $client        = $ipa::params::client,
  $cleanup       = $ipa::params::cleanup,
  $domain        = downcase($ipa::params::domain),
  $realm         = upcase($ipa::params::realm),
  $ipaservers    = $ipa::params::ipaservers,
  $loadbalance   = $ipa::params::loadbalance,
  $adminpw       = $ipa::params::adminpw,
  $dspw          = $ipa::params::dspw,
  $otp           = $ipa::params::otp,
  $dns           = $ipa::params::dns,
  $mkhomedir     = $ipa::params::mkhomedir,
  $ntp           = $ipa::params::ntp,
  $kstart        = $ipa::params::kstart,
  $desc          = $ipa::params::desc,
  $locality      = $ipa::params::locality,
  $location      = $ipa::params::location,
  $sudo          = $ipa::params::sudo,
  $sudopw        = $ipa::params::sudopw,
  $debiansudopkg = $ipa::params::debiansudopkg,
  $automount     = $ipa::params::automount,
  $autofs        = $ipa::params::autofs,
  $svrpkg        = $ipa::params::svrpkg,
  $clntpkg       = $ipa::params::clntpkg,
  $ldaputils     = $ipa::params::ldaputils,
  $ldaputilspkg  = $ipa::params::ldaputilspkg,
  $sssdtools     = $ipa::params::sssdtools,
  $sssdtoolspkg  = $ipa::params::sssdtoolspkg,
  $sssd          = $ipa::params::sssd
) inherits ipa::params {

  @package { $ipa::svrpkg:
    ensure => installed
  }

  @package { $ipa::clntpkg:
    ensure => installed
  }

  if $ipa::ldaputils {
    @package { $ipa::ldaputilspkg:
      ensure => installed
    }
  }

  if $ipa::sssdtools {
    @package { $ipa::sssdtoolspkg:
      ensure => installed
    }
  }

  if $ipa::kstart {
    @package { "kstart":
      ensure => installed
    }
  }

  @service { "ipa":
    ensure  => 'running',
    enable  => true,
    require => Package[$ipa::svrpkg]
  }

  if $ipa::sssd {
    @service { "sssd":
      ensure => 'running',
      enable => true
    }
  }

  case $::osfamily {
    'RedHat': {
      service { "oddjobd":
        ensure => 'stopped',
        enable => false
      }
    }
  }

  if $ipa::autofs {
    @package { "autofs":
      ensure => installed
    }

    @service { "autofs":
      ensure => 'running',
      enable => true
    }
  }

  @cron { "k5start_root":
    command => "/usr/bin/k5start -f /etc/krb5.keytab -U -o root -k /tmp/krb5cc_0 > /dev/null 2>&1",
    user    => 'root',
    minute  => "*/1",
    require => Package["kstart"]
  }

  if $ipa::master and $ipa::replica {
    fail("Conflicting options selected. Cannot configure both master and replica at once.")
  } 

  if ! $ipa::cleanup {
    if $ipa::master or $ipa::replica {
      validate_re("$ipa::adminpw",'^.........*$',"Parameter 'adminpw' must be at least 8 characters long")
      validate_re("$ipa::dspw",'^.........*$',"Parameter 'dspw' must be at least 8 characters long")
    }
  }

  if ! is_domain_name($ipa::domain) {
    fail("Parameter 'domain' is not a valid domain name")
  }

  if ! is_domain_name($ipa::realm) {
    fail("Parameter 'realm' is not a valid domain name")
  }

  if $ipa::cleanup {
    if $ipa::master or $ipa::replica or $ipa::client {
      fail("Conflicting options selected. Cannot cleanup during an installation.")
    } else {
      ipa::cleanup { "$fqdn":
        svrpkg  => $ipa::svrpkg,
        clntpkg => $ipa::clntpkg
      }

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

  if $ipa::master {
    class { "ipa::master":
      svrpkg      => $ipa::svrpkg,
      dns         => $ipa::dns,
      domain      => $ipa::domain,
      realm       => $ipa::realm,
      adminpw     => $ipa::adminpw,
      dspw        => $ipa::dspw,
      loadbalance => $ipa::loadbalance,
      ipaservers  => $ipa::ipaservers,
      sudo        => $ipa::sudo,
      sudopw      => $ipa::sudopw,
      automount   => $ipa::automount,
      autofs      => $ipa::autofs,
      kstart      => $ipa::kstart,
      sssd        => $ipa::sssd
    }

    if ! $ipa::domain {
      fail("Required parameter 'domain' missing")
    }

    if ! $ipa::realm {
      fail("Required parameter 'realm' missing")
    }

    if ! $ipa::adminpw {
      fail("Required parameter 'adminpw' missing")
    }

    if ! $ipa::dspw {
      fail("Required parameter 'dspw' missing")
    }
  }

  if $ipa::replica {
    class { "ipa::replica":
      svrpkg      => $ipa::svrpkg,
      domain      => $ipa::domain,
      adminpw     => $ipa::adminpw,
      dspw        => $ipa::dspw,
      kstart      => $ipa::kstart,
      sssd        => $ipa::sssd
    }
    
    class { "ipa::client":
      clntpkg      => $ipa::clntpkg,
      ldaputils    => $ipa::ldaputils,
      ldaputilspkg => $ipa::ldaputilspkg,
      sssdtools    => $ipa::sssdtools,
      sssdtoolspkg => $ipa::sssdtoolspkg,
      sssd         => $ipa::sssd,
      loadbalance  => $ipa::loadbalance,
      ipaservers   => $ipa::ipaservers,
      mkhomedir    => $ipa::mkhomedir,
      domain       => $ipa::domain,
      realm        => $ipa::realm,
      otp          => $ipa::otp,
      sudo         => $ipa::sudo,
      automount    => $ipa::automount,
      autofs       => $ipa::autofs,
      ntp          => $ipa::ntp,
      desc         => $ipa::desc,
      locality     => $ipa::locality,
      location     => $ipa::location
    }

    if ! $ipa::domain {
      fail("Required parameter 'domain' missing")
    }

    if ! $ipa::realm {
      fail("Required parameter 'realm' missing")
    }

    if ! $ipa::adminpw {
      fail("Required parameter 'adminpw' missing")
    }

    if ! $ipa::dspw {
      fail("Required parameter 'dspw' missing")
    }

    if ! $ipa::otp {
      fail("Required parameter 'otp' missing")
    }
  }

  if $ipa::client {
    class { "ipa::client":
      clntpkg       => $ipa::clntpkg,
      ldaputils     => $ipa::ldaputils,
      ldaputilspkg  => $ipa::ldaputilspkg,
      sssdtools     => $ipa::sssdtools,
      sssdtoolspkg  => $ipa::sssdtoolspkg,
      sssd          => $ipa::sssd,
      domain        => $ipa::domain,
      realm         => $ipa::realm,
      otp           => $ipa::otp,
      sudo          => $ipa::sudo,
      debiansudopkg => $ipa::debiansudopkg,
      automount     => $ipa::automount,
      autofs        => $ipa::autofs,
      mkhomedir     => $ipa::mkhomedir,
      loadbalance   => $ipa::loadbalance,
      ipaservers    => $ipa::ipaservers,
      ntp           => $ipa::ntp,
      desc          => $ipa::desc,
      locality      => $ipa::locality,
      location      => $ipa::location
    }

    if ! $ipa::domain {
      fail("Required parameter 'domain' missing")
    }

    if ! $ipa::realm {
      fail("Required parameter 'realm' missing")
    }

    if ! $ipa::otp {
      fail("Required parameter 'otp' missing")
    }
  }
}