fix: add missing names

Any play or task should have a name.
This commit is contained in:
Christoph Schug 2024-03-03 16:43:55 +01:00
parent 70a8bea0ed
commit 24b0819e7f
4 changed files with 8 additions and 4 deletions

View File

@ -10,6 +10,7 @@
path: /var/run/reboot-required
register: reboot_required
- ansible.builtin.debug:
- name: Report if reboot is required
ansible.builtin.debug:
msg: "Reboot is required"
when: reboot_required.stat.exists

View File

@ -1,5 +1,6 @@
---
- hosts: all
- name: Install Docker
hosts: all
become: true
tasks:

View File

@ -1,5 +1,6 @@
---
- hosts: all
- name: Install microk8s
hosts: all
become: true
tasks:

View File

@ -1,5 +1,6 @@
---
- hosts: all
- name: Install Cockpit
hosts: all
become: true
tasks: