roles/ipaclient/tasks/install.yml: Use ipaadmin_keytab for admin keytab

The use od ipaclient_keytab for ipahost is not correct as the admin keytab
needs to be used here.
This commit is contained in:
Thomas Woerner
2017-09-15 18:55:30 +02:00
parent f366fb5270
commit 6dcecdc296
2 changed files with 4 additions and 1 deletions

View File

@@ -70,6 +70,9 @@ Variables
**ipaservers** - Group of IPA server hostnames.
(list of strings, optional)
**ipaadmin_keytab** - The path to the admin keytab used for alternative authentication.
(string, optional)
**ipaclient_domain** - The primary DNS domain of an existing IPA deployment.
(string, optional)

View File

@@ -33,7 +33,7 @@
state: present
principal: "{{ ipaclient_principal | default('admin') }}"
password: "{{ ipaclient_password | default(omit) }}"
keytab: "{{ ipaclient_keytab | default(omit) }}"
keytab: "{{ ipaadmin_keytab | default(omit) }}"
fqdn: "{{ ansible_fqdn }}"
lifetime: "{{ ipaclient_lifetime | default(omit) }}"
random: True