From f21a270008a8c2be1b60eda195881ad9b0662686 Mon Sep 17 00:00:00 2001 From: Michal Konecny Date: Wed, 6 Nov 2024 19:46:48 +0100 Subject: [PATCH] [ipa/server] Try to fix the deployment errors The answer from ipa03 is ignored, let's hope this will fix it. The ipa_user module is returning "response user_mod: no modifications to be performed", which should be OK, but it's treated like fatal error. Signed-off-by: Michal Konecny --- roles/ipa/server/tasks/main.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/roles/ipa/server/tasks/main.yml b/roles/ipa/server/tasks/main.yml index dae661a5c5..8cf7bddbcc 100644 --- a/roles/ipa/server/tasks/main.yml +++ b/roles/ipa/server/tasks/main.yml @@ -122,8 +122,7 @@ - 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 }} (ignored for master node and any node with /var/log/ipainstall.log)? (yes/no)" register: confirm_replica with_items: "{{ play_hosts }}" tags: @@ -236,7 +235,7 @@ name: admin password: "{{ ipa_admin_password }}" # Password expiration date will be a Friday 13th in 30 years. I'm sure we'll remember that. - krbpasswordexpiration: "2050-05-13 00:00:00" + krbpasswordexpiration: "20500513000000" update_password: on_create ipa_pass: "{{ ipa_admin_password }}" ipa_host: "{{ inventory_hostname }}"