From 5d6adee15e590e95e37b0d019ef4d9c1cebc1bcf Mon Sep 17 00:00:00 2001 From: Sergio Oliveira Campos <seocam@seocam.com> Date: Fri, 24 Jul 2020 11:10:59 -0300 Subject: [PATCH] Fixed wrong/missing ipaadmin_password in tests --- tests/host/test_host_no_zone.yml | 1 + tests/service/test_service.yml | 8 ++++---- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/tests/host/test_host_no_zone.yml b/tests/host/test_host_no_zone.yml index be6fe218..629e4baf 100644 --- a/tests/host/test_host_no_zone.yml +++ b/tests/host/test_host_no_zone.yml @@ -6,6 +6,7 @@ tasks: - name: Ensure host with inexistent zone is absent. ipahost: + ipaadmin_password: SomeADMINpassword name: host01.absentzone.test state: absent register: result diff --git a/tests/service/test_service.yml b/tests/service/test_service.yml index 39ddfbbc..6b9f466e 100644 --- a/tests/service/test_service.yml +++ b/tests/service/test_service.yml @@ -543,7 +543,7 @@ - name: Ensure SMB service is present. ipaservice: - ipaadmin_password: MyPassword123 + ipaadmin_password: SomeADMINpassword name: "{{ host1_fqdn }}" smb: yes netbiosname: SAMBASVC @@ -552,7 +552,7 @@ - name: Ensure SMB service is again. ipaservice: - ipaadmin_password: MyPassword123 + ipaadmin_password: SomeADMINpassword name: "{{ host1_fqdn }}" smb: yes netbiosname: SAMBASVC @@ -561,7 +561,7 @@ - name: Ensure SMB service is absent. ipaservice: - ipaadmin_password: MyPassword123 + ipaadmin_password: SomeADMINpassword name: "cifs/{{ host1_fqdn }}" state: absent register: result @@ -569,7 +569,7 @@ - name: Ensure SMB service is absent, again. ipaservice: - ipaadmin_password: MyPassword123 + ipaadmin_password: SomeADMINpassword name: "cifs/{{ host1_fqdn }}" state: absent register: result -- GitLab