roles/common: fix unnamed blocks

This commit is contained in:
Alan Orth 2022-09-10 18:30:07 +03:00
parent 587bd6dcdd
commit fc0fcc5742
2 changed files with 124 additions and 122 deletions

View File

@ -1,6 +1,7 @@
---
- block:
- name: Configure Debian packages
block:
- name: Configure apt mirror
ansible.builtin.template: src=sources.list.j2 dest=/etc/apt/sources.list owner=root group=root mode=0644
when: ansible_architecture != 'armv7l'

View File

@ -1,6 +1,7 @@
---
- block:
- name: Configure Ubuntu packages
block:
- name: Configure apt mirror
ansible.builtin.template: src=sources.list.j2 dest=/etc/apt/sources.list owner=root group=root mode=0644
when: ansible_architecture != 'armv7l'