Merge "CI: Use the same redirection syntax everywhere"

This commit is contained in:
Zuul 2021-03-26 11:25:15 +00:00 committed by Gerrit Code Review
commit d6b99abd70
2 changed files with 3 additions and 2 deletions

View File

@ -13,7 +13,8 @@
tasks: tasks:
- name: Ensure overcloud is deployed - name: Ensure overcloud is deployed
shell: shell:
cmd: "{{ kayobe_src_dir }}/dev/overcloud-deploy.sh > {{ logs_dir }}/ansible/overcloud-deploy" cmd: "{{ kayobe_src_dir }}/dev/overcloud-deploy.sh &> {{ logs_dir }}/ansible/overcloud-deploy"
executable: /bin/bash
- name: Run testinfra tests - name: Run testinfra tests
command: "{{ testinfra_venv }}/bin/py.test {{ test_path }} --html={{ logs_dir }}/test-results.html --self-contained-html" command: "{{ testinfra_venv }}/bin/py.test {{ test_path }} --html={{ logs_dir }}/test-results.html --self-contained-html"

View File

@ -8,7 +8,7 @@
tasks: tasks:
- name: Ensure seed hypervisor is deployed - name: Ensure seed hypervisor is deployed
shell: shell:
cmd: "{{ kayobe_src_dir }}/dev/seed-hypervisor-deploy.sh > {{ logs_dir }}/ansible/seed-hypervisor-deploy" cmd: "{{ kayobe_src_dir }}/dev/seed-hypervisor-deploy.sh &> {{ logs_dir }}/ansible/seed-hypervisor-deploy"
executable: /bin/bash executable: /bin/bash
- name: Ensure seed is deployed - name: Ensure seed is deployed