tobiko/roles/setup_tobiko_logs_dir/tasks/main.yml
Slawek Kaplonski a47f22d608 Set path for tobiko logs in devstack tobiko jobs
Tobiko should now log its output to '{{ ansible_user_dir }}'
directory thus it will be fetched by Zuul after job ends and
we will be able to check tobiko logs after every CI job run in
Zuul.

Change-Id: I2f6e0edd2878e5a7ffd9697a3eaeea61a4c03674
2019-09-25 20:33:19 +00:00

9 lines
169 B
YAML

- name: Ensure logdir exists
become: yes
file:
path: "{{ tobiko_logsdir }}"
state: directory
owner: stack
group: "{{ ansible_user }}"
mode: 0775