57e29c3680
It seems we have some debugging to do on the openafs roles. The other roles here, particularly the bazelisk one, aren't tested here, so reduce the file matcher. We can overhaul this more, but it seems like a post-puppet/xenial thing to do. Change-Id: I0a41ef48eab0560a23a4e29463435dfe0758d01e
15 lines
326 B
YAML
15 lines
326 B
YAML
- hosts: localhost
|
|
tasks:
|
|
- name: Make log directories for testing hosts
|
|
file:
|
|
path: "{{ zuul.executor.log_root }}/{{ item }}/logs"
|
|
state: directory
|
|
recurse: true
|
|
loop: "{{ query('inventory_hostnames', 'all') }}"
|
|
|
|
- hosts: all
|
|
tasks:
|
|
- include_role:
|
|
name: stage-output
|
|
|