Skip to content

lsst-it/puppet-ipa

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

603 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

ipa

Overview

This module manages FreeIPA servers, replicas, and clients.

This module was forked from Puppet-Finland/puppet-ipa, which was forked from jpuskar/puppet-ipa, which was forked from huit/puppet-ipa.

Usage

Example usage:

class { 'ipa':
  ipa_role                    => 'master',
  domain                      => 'example.com',
  admin_password              => 'rspecrspec123',
  directory_services_password => 'rspecrspec123',
  idstart                     => 70000,
  configure_dns_server        => false,
  configure_ntp               => false,
}

Adding a replica:

class { 'ipa':
  ipa_role             => 'replica',
  domain               => 'example.com',
  ipa_master_fqdn      => 'master-puppet8.example.com',
  admin_password       => 'rspecrspec123',
  configure_dns_server => false,
  configure_ntp        => false,
  configure_replica_ca => true,
}

Adding a client:

class { 'ipa':
  ipa_role              => 'client',
  domain                => 'example.com',
  domain_join_principal => 'admin',
  domain_join_password  => 'rspecrspec123',
  ipa_master_fqdn       => 'master-puppet8.example.com',
  configure_ntp         => false,
}

About

Puppet module that can manage an IPA master, replicas and clients.

Resources

License

Stars

Watchers

Forks

Packages

 
 
 

Contributors

Languages

  • Puppet 53.2%
  • Ruby 46.8%