Merge "Remove unnecessary pipe in jinja default value"

This commit is contained in:
Zuul 2020-04-24 01:00:34 +00:00 committed by Gerrit Code Review
commit 128dcf3491
1 changed files with 1 additions and 2 deletions

View File

@ -30,8 +30,7 @@
- name: Run artcl_commands
# noqa 305
vars:
capture_file: |
{{ item.capture_file | default( item.name + '.txt') }}
capture_file: "{{ item.capture_file | default( item.name + '.txt') }}"
shell:
# redirection of output to log file, see https://ops.tips/gists/redirect-all-outputs-of-a-bash-script-to-a-file/
cmd: |