aboutsummaryrefslogtreecommitdiff
path: root/personal_infra/puppet/site/01-ipa.pp
blob: 44f7816cd6c1628e517ecb21169dcaf22893d5f5 (plain)
1
2
3
4
5
6
7
$ipa_client_package = case $facts['os']['family'] {
  'Debian': { 'freeipa-client' }
  'RedHat': { 'ipa-client' }
  default: { fail($facts['os']['family']) }
}

package {$ipa_client_package:}