From 86973ab724b26fa6593e8b326f09e228363e608a Mon Sep 17 00:00:00 2001 From: Patrick Uiterwijk Date: Mon, 28 Nov 2016 10:47:21 +0000 Subject: [PATCH] DM password is no longer needed Signed-off-by: Patrick Uiterwijk --- roles/ipa/server/files/configure-ipa.sh | 1 - roles/ipa/server/tasks/main.yml | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/roles/ipa/server/files/configure-ipa.sh b/roles/ipa/server/files/configure-ipa.sh index d6a6cf79b1..4a424fc950 100644 --- a/roles/ipa/server/files/configure-ipa.sh +++ b/roles/ipa/server/files/configure-ipa.sh @@ -1,6 +1,5 @@ #!/bin/bash -xe ADMIN_PASSWORD="$1" -DM_PASSWORD="$2" function cleanup { kdestroy -A diff --git a/roles/ipa/server/tasks/main.yml b/roles/ipa/server/tasks/main.yml index a606a64e78..471d4fdaa5 100644 --- a/roles/ipa/server/tasks/main.yml +++ b/roles/ipa/server/tasks/main.yml @@ -130,7 +130,7 @@ when: inventory_hostname.startswith("ipa01") - name: Run configuration script - command: /bin/bash /root/configure-ipa.sh {{ipa_dm_password}} {{ipa_admin_password}} + command: /bin/bash /root/configure-ipa.sh {{ipa_admin_password}} tags: - ipa/server - config