Skip to content

Commit 9195494

Browse files
authored
Merge pull request #1243 from t-woerner/ipareplica_ip_addresses_use_for_client
ipareplica: Pass ipareplica_ip_addresses to client deployment part
2 parents 81906ed + 81abf68 commit 9195494

8 files changed

Lines changed: 8 additions & 7 deletions

roles/ipareplica/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,7 @@ Variable | Description | Required
190190
`ipaservers` | This group with the IPA master full qualified hostnames. (list of strings) | mostly
191191
`ipareplicas` | Group of IPA replica hostnames. (list of strings) | yes
192192
`ipaadmin_password` | The password for the IPA admin user (string) | mostly
193-
`ipareplica_ip_addresses` | The list of master server IP addresses. (list of strings) | no
193+
`ipareplica_ip_addresses` | The list of IPA replica IP addresses. (list of strings) | no
194194
`ipareplica_domain` | The primary DNS domain of an existing IPA deployment. (string) | no
195195
`ipaserver_realm` | The Kerberos realm of an existing IPA deployment. (string) | no
196196
`ipaserver_hostname` | Fully qualified name of the server. (string) | no

roles/ipareplica/library/ipareplica_create_ipa_conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747
type: str
4848
required: no
4949
ip_addresses:
50-
description: List of Master Server IP Addresses
50+
description: List of IPA replica IP addresses
5151
type: list
5252
elements: str
5353
required: no

roles/ipareplica/library/ipareplica_install_ca_certs.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747
type: str
4848
required: no
4949
ip_addresses:
50-
description: List of Master Server IP Addresses
50+
description: List of IPA replica IP addresses
5151
type: list
5252
elements: str
5353
required: no

roles/ipareplica/library/ipareplica_prepare.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@
4949
type: str
5050
required: no
5151
ip_addresses:
52-
description: List of Master Server IP Addresses
52+
description: List of IPA replica IP addresses
5353
type: list
5454
elements: str
5555
required: no

roles/ipareplica/library/ipareplica_setup_ds.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747
type: str
4848
required: no
4949
ip_addresses:
50-
description: List of Master Server IP Addresses
50+
description: List of IPA replica IP addresses
5151
type: list
5252
elements: str
5353
required: no

roles/ipareplica/library/ipareplica_setup_kra.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747
type: str
4848
required: no
4949
ip_addresses:
50-
description: List of Master Server IP Addresses
50+
description: List of IPA replica IP addresses
5151
type: list
5252
elements: str
5353
required: no

roles/ipareplica/library/ipareplica_test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
description: IPA replica deployment tests
3939
options:
4040
ip_addresses:
41-
description: List of Master Server IP Addresses
41+
description: List of IPA replica IP addresses
4242
type: list
4343
elements: str
4444
required: no

roles/ipareplica/tasks/install.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -125,6 +125,7 @@
125125
ipaclient_realm: "{{ result_ipareplica_test.realm | default(omit) }}"
126126
ipaclient_servers: "{{ ipareplica_servers | default(omit) }}"
127127
ipaclient_hostname: "{{ result_ipareplica_test.hostname }}"
128+
ipaclient_ip_addresses: "{{ ipareplica_ip_addresses | default(omit) }}"
128129
ipaclient_install_packages: "{{ ipareplica_install_packages }}"
129130
when: not result_ipareplica_test.client_enrolled
130131

0 commit comments

Comments
 (0)