From 03edf77f12fb90e690a09c1638d42fc2bcc64c4c Mon Sep 17 00:00:00 2001 From: Michal Konecny Date: Thu, 16 Nov 2023 14:14:42 +0100 Subject: [PATCH] [IPA] Start the clean step unattended This needs user input if not run with --unattended. Let's add this parameter to fix that. Signed-off-by: Michal Konecny --- roles/ipa/server/tasks/main.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/roles/ipa/server/tasks/main.yml b/roles/ipa/server/tasks/main.yml index 6919eb7d19..3c5be612c5 100644 --- a/roles/ipa/server/tasks/main.yml +++ b/roles/ipa/server/tasks/main.yml @@ -177,7 +177,9 @@ # This will clean the previous installation and allows # the replica to be deployed. - name: clean client installation - command: ipa-server-install --uninstall + command: ipa-server-install + --uninstall + --unattended when: ansible_distribution_major_version|int >= 9 - name: deploy replica