Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions manifests/init.pp
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,12 @@
# `directory_services_password`
# (string) Password which will be passed into the ipa setup's parameter named "--ds-password".
#
# `allow_zone_overlap`
# (boolean) if set to true, allow creating of (reverse) zone even if the zone is already
# resolvable. Using this option is discouraged as it result in later problems with
# domain name. You may have to use this, though, when migrating existing DNS
# domains to FreeIPA.
#
# `autofs_package_name`
# (string) Name of the autofs package to install if enabled.
#
Expand Down Expand Up @@ -149,6 +155,7 @@
String $admin_password = '',
String $directory_services_password = '',
String $autofs_package_name = 'autofs',
Boolean $allow_zone_overlap = false,
Boolean $client_install_ldaputils = false,
Boolean $configure_dns_server = true,
Boolean $configure_ntp = true,
Expand Down
6 changes: 6 additions & 0 deletions manifests/install/server.pp
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,12 @@

$server_install_cmd_opts_idstart = "--idstart=${easy_ipa::idstart}"

if $easy_ipa::allow_zone_overlap {
$server_install_cmd_opts_zone_overlap = '--allow-zone-overlap'
} else {
$server_install_cmd_opts_zone_overlap = ''
}

if $easy_ipa::enable_hostname {
$server_install_cmd_opts_hostname = "--hostname=${easy_ipa::ipa_server_fqdn}"
} else {
Expand Down
1 change: 1 addition & 0 deletions manifests/install/server/master.pp
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
--domain=${easy_ipa::domain} \
--admin-password='${easy_ipa::admin_password}' \
--ds-password='${easy_ipa::directory_services_password}' \
${easy_ipa::install::server::server_install_cmd_opts_zone_overlap} \
${easy_ipa::install::server::server_install_cmd_opts_setup_dns} \
${easy_ipa::install::server::server_install_cmd_opts_forwarders} \
${easy_ipa::install::server::server_install_cmd_opts_ip_address} \
Expand Down
1 change: 1 addition & 0 deletions manifests/install/server/replica.pp
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
--realm=${easy_ipa::final_realm} \
--domain=${easy_ipa::domain} \
--server=${easy_ipa::ipa_master_fqdn} \
${easy_ipa::install::server::server_install_cmd_opts_zone_overlap} \
${easy_ipa::install::server::server_install_cmd_opts_setup_dns} \
${easy_ipa::install::server::server_install_cmd_opts_forwarders} \
${easy_ipa::install::server::server_install_cmd_opts_ip_address} \
Expand Down