style: remove trailing spaces

This commit is contained in:
Simon Cornet 2025-12-14 13:38:34 +01:00
commit 402a5e2be4

View file

@ -6,14 +6,14 @@
- "ansible_distribution == 'Alpine'" - "ansible_distribution == 'Alpine'"
- "ansible_distribution_version == '3.22'" - "ansible_distribution_version == '3.22'"
block: block:
# change repositories # change repositories
- name: "change repositories" - name: "change repositories"
ansible.builtin.replace: ansible.builtin.replace:
path: "/etc/apk/repositories" path: "/etc/apk/repositories"
regexp: 'v3\.22' regexp: 'v3\.22'
replace: "v3.23" replace: "v3.23"
# update apk cache # update apk cache
- name: "update apk cache" - name: "update apk cache"
ansible.builtin.apk: ansible.builtin.apk:
@ -24,7 +24,7 @@
ansible.builtin.apk: ansible.builtin.apk:
name: "apk-tools" name: "apk-tools"
state: "latest" state: "latest"
# upgrade the rest # upgrade the rest
- name: "upgrade the rest" - name: "upgrade the rest"
ansible.builtin.apk: ansible.builtin.apk: