Browse Source

show stdout/stderr_lines instead of an enormous chunk of crap

Grega Bremec 5 days ago
parent
commit
0cea6e5970
1 changed files with 2 additions and 2 deletions
  1. 2 2
      45-oc-mirror.yml

+ 2 - 2
45-oc-mirror.yml

@@ -45,9 +45,9 @@
 
 
     - name: Show what happened on stdout.
     - name: Show what happened on stdout.
       ansible.builtin.debug:
       ansible.builtin.debug:
-        var: mirror_output.stdout
+        var: mirror_output.stdout_lines
 
 
     - name: Show what happened on stderr.
     - name: Show what happened on stderr.
       ansible.builtin.debug:
       ansible.builtin.debug:
-        var: mirror_output.stderr
+        var: mirror_output.stderr_lines
 ...
 ...