From a9e5a509a5568814e884409f1a17dbfb203aeaec Mon Sep 17 00:00:00 2001 From: Alexander Dahl Date: Wed, 19 Feb 2025 21:55:53 +0100 Subject: [PATCH] :rotating_light: Fix wrong indentation Fixes the following ansible-lint warnings: yaml[indentation]: Wrong indentation: expected 6 but found 4 roles/nfs-host/tasks/main.yml:6 yaml[indentation]: Wrong indentation: expected 6 but found 4 roles/nginx_https_ingress/tasks/main.yml:11 yaml[indentation]: Wrong indentation: expected 6 but found 4 roles/nginx_https_ingress/tasks/main.yml:48 --- roles/nfs-host/tasks/main.yml | 6 +++--- roles/nginx_https_ingress/tasks/main.yml | 8 ++++---- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/roles/nfs-host/tasks/main.yml b/roles/nfs-host/tasks/main.yml index c1ac52d..a6423ff 100644 --- a/roles/nfs-host/tasks/main.yml +++ b/roles/nfs-host/tasks/main.yml @@ -3,9 +3,9 @@ ansible.builtin.apt: state: present name: - - nfs-kernel-server - - nfs-common - - parted + - nfs-kernel-server + - nfs-common + - parted - name: Create a new ext4 primary partition community.general.parted: diff --git a/roles/nginx_https_ingress/tasks/main.yml b/roles/nginx_https_ingress/tasks/main.yml index aa5a4bb..b922472 100644 --- a/roles/nginx_https_ingress/tasks/main.yml +++ b/roles/nginx_https_ingress/tasks/main.yml @@ -8,9 +8,9 @@ ansible.builtin.apt: state: present name: - - apt-transport-https - - ca-certificates - - gnupg2 + - apt-transport-https + - ca-certificates + - gnupg2 ### Setup APT cache for the nginx repository # @@ -45,7 +45,7 @@ state: present name: # This version of nginx comes with the ngx_stream_core_module module - - nginx + - nginx ### Configuration