Blame SOURCES/kdump-fix-newline.diff

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