ansible-freeipa icon indicating copy to clipboard operation
ansible-freeipa copied to clipboard

IPA Replica install fails when `ipaclient_no_ntp` is set true

Open Aethylred opened this issue 8 months ago • 2 comments

When setting up an IPA replica with ipaclient_no_ntp: true I get the error:

TASK [freeipa.ansible_freeipa.ipareplica : Install - Replica installation test] ***********************************************************************************************************************************************************************************************************
Thursday 09 November 2023  01:50:23 +0000 (0:00:00.019)       0:00:19.524 ***** 
fatal: [ipa02]: FAILED! => {"changed": false, "msg": "NTP configuration cannot be updated during promotion"}

Looking at the line: https://github.com/freeipa/ansible-freeipa/blob/f1a6f444770a4d23c87b77d78d1c26172ae1c823/roles/ipareplica/library/ipareplica_test.py#L520

 # The NTP configuration can not be touched on pre-installed client:
        if options.no_ntp or options.ntp_servers or options.ntp_pool:
            ansible_module.fail_json(
                msg="NTP configuration cannot be updated during promotion")

Shouldn't that be if not options.no_ntp or... as this variable is True when NTP is not being configured.

Aethylred avatar Nov 09 '23 01:11 Aethylred