style: add YAML document start markers to Ansible playbooks and tasks
Some checks failed
Ansible Lint Check / check-ansible (push) Failing after 1m34s
Nix Format Check / check-format (push) Successful in 57s

This commit is contained in:
2025-03-12 14:05:42 +01:00
parent 785bd9b122
commit 112d3679da
36 changed files with 202 additions and 31 deletions

View File

@@ -35,14 +35,14 @@
ansible.builtin.file:
path: "{{ extension_path }}"
state: directory
mode: '0755'
mode: "0755"
when: not ext_check.stat.exists or update_needed
- name: Download extension
ansible.builtin.get_url:
url: "{{ extension_url | replace('%TAG%', requested_git_tag) }}"
dest: "{{ extension_path }}/release.zip"
mode: '0644'
mode: "0644"
when: update_needed or not ext_check.stat.exists
- name: Extract extension
@@ -55,7 +55,7 @@
ansible.builtin.copy:
content: "{{ requested_git_tag }}"
dest: "{{ version_file }}"
mode: '0644'
mode: "0644"
when: update_needed or not ext_check.stat.exists
- name: Cleanup post installation