freeipa / ansible-freeipa

Ansible roles and modules for FreeIPA
GNU General Public License v3.0
482 stars 230 forks source link

IPA Replica install fails when `ipaclient_no_ntp` is set true #1171

Open Aethylred opened 8 months ago

Aethylred commented 8 months ago

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 commented 8 months ago

This only happens when if the replica is already installed as a client

FF186 commented 5 months ago

+1. Face similar issue.

EmptyByte commented 2 weeks ago

+1 should be tagged as a bug. The workaround was to remove the no_ntp=true . These double negatives.