From b892f1d7262b36e2ba895768272779571c613adf Mon Sep 17 00:00:00 2001 From: Colin Wilk Date: Mon, 22 May 2023 23:32:53 +0200 Subject: Add YAMLLint rules Fix linting errors that came up with the new rules Main changes: * Enforce YAML document start headers * Enforce spacing with commas, colons and hyphens * Enforce indentation * Enforce use of quotes only then required * Enforce use of single quotes over double quotes * Enforce use of true/false over yes/no and derivatives * [..] Other minor rules that were already followed Signed-off-by: Colin Wilk --- tasks/installation.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tasks/installation.yml') diff --git a/tasks/installation.yml b/tasks/installation.yml index af379e6..8ee0835 100644 --- a/tasks/installation.yml +++ b/tasks/installation.yml @@ -7,7 +7,7 @@ update_cache: true become: true when: ansible_facts['os_family'] == "Debian" - delegate_to: "{{ borg_server_host }}" + delegate_to: '{{ borg_server_host }}' - name: Install Debian Client dependencies ansible.builtin.apt: -- cgit v1.2.3