[ipa/server] Don't ask for reinstall in some cases

Don't ask for reinstall when this is master node or the install log is
already created.
This commit is contained in:
Michal Konecny 2025-03-31 15:16:13 +02:00
parent f8adba6df3
commit 40136bda42

View file

@ -122,9 +122,10 @@
- name: Ask admin if they are OK reinstalling this ipa server replica
ansible.builtin.pause:
prompt: "Do you want to reinstall replica for {{ item }} (ignored for master node and any node with /var/log/ipainstall.log)? (yes/no)"
prompt: "Do you want to reinstall replica for {{ item }}? (yes/no)"
register: confirm_replica
with_items: "{{ play_hosts }}"
when: not ipa_initial or not check_replica.stat.exists
tags:
- ipa/server
- config