Clean up ansible-lint 4.0.0 errors

A new release of ansible-lint is out, which has now set a default line
length of 120 chars.

Change-Id: Iecb0d6b69ad1280b328ef4ff1568d1b41d1e6a55
Signed-off-by: Paul Belanger <pabelanger@redhat.com>
This commit is contained in:
Paul Belanger 2018-12-18 11:52:22 -05:00
parent 9d07dd675e
commit f561a95699

View File

@ -1,14 +1,18 @@
- hosts: all - hosts: all
tasks: tasks:
- name: Setup logs directory fact
set_fact:
__log_dir: "{{ zuul_output_dir }}/logs/logs/var/log/journal"
- name: Ensure journald logs directory exists - name: Ensure journald logs directory exists
file: file:
path: "{{ zuul_output_dir }}/logs/logs/var/log/journal" path: "{{ __log_dir }}"
state: directory state: directory
- name: Collect journald logs - name: Collect journald logs
shell: "sudo journalctl -u {{ item }}.service | tee {{ zuul_output_dir }}/logs/logs/var/log/journal/{{ item }}.service.log" shell: "sudo journalctl -u {{ item }}.service | tee {{ __log_dir }}/{{ item }}.service.log"
args: args:
creates: "{{ zuul_output_dir }}/logs/logs/var/log/journal/{{ item }}.service.log" creates: "{{ __log_dir }}/{{ item }}.service.log"
with_items: with_items:
- zuul-executor - zuul-executor
- zuul-fingergw - zuul-fingergw