Blame SOURCES/kdump-fix-newline.diff

663612
commit cafd95d0b03360d12e86170eb10fc1fc3dcade06
663612
Author: Pavel Cahyna <pcahyna@redhat.com>
663612
Date:   Thu Jan 14 11:42:48 2021 +0100
663612
663612
    Get rid of the extra final newline in string
663612
    
663612
    Use the `-` chomping indicator to indicate that the trailing newline is
663612
    not intended as a part of the string.
663612
    https://yaml.org/spec/1.1/#chomping/
663612
    
663612
    The trailing newline was causing an actual problem in the test.
663612
    
663612
    Also use the `>` folded style, which is more appropriate here than the
663612
    `|` literal style.
663612
663612
diff --git a/tests/tests_ssh.yml b/tests/tests_ssh.yml
663612
index 6d3699c..d3503f7 100644
663612
--- a/tests/tests_ssh.yml
663612
+++ b/tests/tests_ssh.yml
663612
@@ -27,7 +27,7 @@
663612
     - include_role:
663612
         name: linux-system-roles.kdump
663612
       vars:
663612
-        kdump_ssh_user: |
663612
+        kdump_ssh_user: >-
663612
           {{ hostvars[kdump_ssh_server_outside]['ansible_user_id'] }}
663612
         # This is the outside address. Ansible will connect to it to
663612
         # copy the ssh key.