瀏覽代碼

show stdout/stderr_lines instead of an enormous chunk of crap

Grega Bremec 5 天之前
父節點
當前提交
0cea6e5970
共有 1 個文件被更改,包括 2 次插入2 次删除
  1. 2 2
      45-oc-mirror.yml

+ 2 - 2
45-oc-mirror.yml

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