Puppet Class: ipa::client
- Defined in:
- manifests/client.pp
Overview
Class: ipa::client
This class configures an IPA client
Parameters:
Actions:
Requires: Exported resources, puppetlabs/puppetlabs-firewall, puppetlabs/stdlib
Sample Usage:
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 |
# File 'manifests/client.pp', line 13
class ipa::client (
$clntpkg = {},
$ldaputils = {},
$ldaputilspkg = {},
$sssdtools = {},
$sssdtoolspkg = {},
$sssd = {},
$client = {},
$domain = {},
$realm = {},
$sudo = {},
$debiansudopkg = {},
$automount = {},
$autofs = {},
$otp = {},
$ipaservers = [],
$loadbalance = {},
$mkhomedir = false,
$ntp = false,
$desc = {},
$locality = {},
$location = {}
) {
Ipa::Clientinstall <<| |>> {
name => $::fqdn,
otp => $ipa::client::otp,
domain => $ipa::client::domain,
mkhomedir => $ipa::client::mkhomedir,
ntp => $ipa::client::ntp,
require => Package[$ipa::client::clntpkg]
}
if $ipa::client::sudo {
Ipa::Configsudo <<| |>> {
name => $::fqdn,
os => "${::osfamily}${::lsbmajdistrelease}",
require => Ipa::Clientinstall[$::fqdn]
}
}
if $ipa::client::automount {
if $ipa::client::autofs {
realize Service["autofs"]
realize Package["autofs"]
}
Ipa::Configautomount <<| |>> {
name => $::fqdn,
os => $::osfamily,
notify => Service["autofs"],
require => Ipa::Clientinstall[$::fqdn]
}
}
if defined(Package[$ipa::client::clntpkg]) {
realize Package["$ipa::client::clntpkg"]
}
if $ipa::client::ldaputils {
if defined(Package[$ipa::client::ldaputilspkg]) {
realize Package["$ipa::client::ldaputilspkg"]
}
}
if $ipa::client::sssdtools {
if defined(Package[$ipa::client::sssdtoolspkg]) {
realize Package["$ipa::client::sssdtoolspkg"]
}
}
if $ipa::client::sssd {
realize Service["sssd"]
}
if $::osfamily == 'Debian' {
file { "/etc/pki":
ensure => directory,
mode => 755,
owner => root,
group => root,
require => Package[$ipa::client::clntpkg]
}
file {"/etc/pki/nssdb":
ensure => directory,
mode => 755,
owner => root,
group => root,
require => File["/etc/pki"]
}
File["/etc/pki/nssdb"] -> Ipa::Clientinstall <<| |>>
if $ipa::client::sudo and $ipa::client::debiansudopkg {
@package { 'sudo-ldap':
ensure => installed
}
realize Package['sudo-ldap']
}
if $ipa::client::mkhomedir == true {
augeas {
'mkhomedir_pam' :
context => '/files/etc/pam.d/common-session',
changes => ['ins 1000000 after *[last()]',
'set 1000000/type session',
'set 1000000/control required',
'set 1000000/module pam_mkhomedir.so',
'set 1000000/argument umask=0022'],
onlyif => "match *[type='session'][module='pam_mkhomedir.so'][argument='umask=0022'] size == 0"
}
}
}
@@ipa::hostadd { "$::fqdn":
otp => $ipa::client::otp,
desc => $ipa::client::desc,
clientos => $::lsbdistdescription,
clientpf => $::manufacturer,
locality => $ipa::client::locality,
location => $ipa::client::location
}
if $ipa::client::loadbalance {
ipa::loadbalanceconf { "client-${::fqdn}":
domain => $ipa::client::domain,
ipaservers => $ipa::client::ipaservers,
mkhomedir => $ipa::client::mkhomedir,
require => Ipa::Clientinstall[$::fqdn]
}
}
}
|