Blame SOURCES/sap-preconfigure-2bc922671e92c12d3954c249c51d4281e12d1274.patch

6b8d89
commit 2bc922671e92c12d3954c249c51d4281e12d1274
6b8d89
Author: Bernd Finger <bfinger@redhat.com>
6b8d89
Date:   Thu Mar 4 22:37:21 2021 +0100
6b8d89
6b8d89
    solve issue #130
6b8d89
6b8d89
diff --git a/tasks/assert-installation.yml b/tasks/assert-installation.yml
6b8d89
index ae8c144..74a0378 100644
6b8d89
--- a/tasks/assert-installation.yml
6b8d89
+++ b/tasks/assert-installation.yml
6b8d89
@@ -16,10 +16,9 @@
6b8d89
 
6b8d89
   - name: Assert that all required RHEL 7 package groups are installed
6b8d89
     assert:
6b8d89
-      that:
6b8d89
-        - "'{{ line_item|replace(\'@\', \'\') }}' in yum_group_result.stdout_lines"
6b8d89
-      fail_msg: "FAIL: Package group '{{ line_item|replace(\'@\', \'\') }}' is not installed!"
6b8d89
-      success_msg: "PASS: Package group '{{ line_item|replace(\'@\', \'\') }}' is installed."
6b8d89
+      that: "'{{ line_item|replace(\"@\", \"\") }}' in yum_group_result.stdout_lines"
6b8d89
+      fail_msg: "FAIL: Package group '{{ line_item|replace(\"@\", \"\") }}' is not installed!"
6b8d89
+      success_msg: "PASS: Package group '{{ line_item|replace(\"@\", \"\") }}' is installed."
6b8d89
     with_items:
6b8d89
       - "{{ __sap_preconfigure_packagegroups }}"
6b8d89
     loop_control: