123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- ---
- - name: Include ipa server variables
- include_vars: ../../login_common/vars/main.yml
- - name: Fetch hostname
- command: hostname
- register: loginnode_hostname
- changed_when: false
- - name: Install freeipa client package
- package:
- name: "{{ ipa_client_package }}"
- state: present
- tags: install
- - name: Uninstall client if already installed
- command: ipa-client-install --uninstall -U
- changed_when: false
- failed_when: false
- - name: Install ipa client in CentOS 7.9
- command: >-
- ipa-client-install --domain '{{ hostvars['127.0.0.1']['domain_name'] }}' --server '{{ hostvars[groups['manager'][0]]['server_hostname'] }}'
- --principal admin --password '{{ hostvars['127.0.0.1']['ipa_admin_password'] }}' --force-join --enable-dns-updates --force-ntpd -U
- changed_when: true
- no_log: true
- when:
- - ( ansible_distribution | lower == os_centos )
- - ( ansible_distribution_version < os_version )
- - name: Install ipa client in Rocky 8.4
- command: >-
- ipa-client-install --domain '{{ hostvars['127.0.0.1']['domain_name'] }}' --server '{{ hostvars[groups['manager'][0]]['server_hostname'] }}'
- --principal admin --password '{{ hostvars['127.0.0.1']['ipa_admin_password'] }}' --force-join --enable-dns-updates --no-ntp -U
- changed_when: true
- no_log: true
- when:
- - ( ansible_distribution | lower == os_centos ) or
- ( ansible_distribution | lower == os_rocky )
- - ( ansible_distribution_version >= os_version )
|