From c2e176a97d90b4c5b7e88b9d033f239f62fb6c55 Mon Sep 17 00:00:00 2001 From: Jeff Geerling Date: Tue, 25 Sep 2018 22:29:54 -0500 Subject: [PATCH] Fix some Ansible Lint issues. --- meta/main.yml | 26 +++++++++++++------------- tasks/setup-Debian.yml | 4 +++- 2 files changed, 16 insertions(+), 14 deletions(-) diff --git a/meta/main.yml b/meta/main.yml index 5a19f7a..ef118f4 100644 --- a/meta/main.yml +++ b/meta/main.yml @@ -8,19 +8,19 @@ galaxy_info: license: "license (BSD, MIT)" min_ansible_version: 2.4 platforms: - - name: EL - versions: - - 6 - - 7 - - name: Fedora - versions: - - all - - name: Debian - versions: - - all - - name: Ubuntu - versions: - - all + - name: EL + versions: + - 6 + - 7 + - name: Fedora + versions: + - all + - name: Debian + versions: + - all + - name: Ubuntu + versions: + - all galaxy_tags: - system - packaging diff --git a/tasks/setup-Debian.yml b/tasks/setup-Debian.yml index 0bc06b8..7688a1f 100644 --- a/tasks/setup-Debian.yml +++ b/tasks/setup-Debian.yml @@ -1,7 +1,9 @@ --- - name: Enable Backports repository. apt_repository: - repo: 'deb http://ftp.debian.org/debian {{ ansible_distribution_release }}-backports main' + repo: >- + deb http://ftp.debian.org/debian + {{ ansible_distribution_release }}-backports main' state: present filename: "{{ ansible_distribution_release }}_backports"