mirror of
https://github.com/Noratrieb/vmlab.git
synced 2026-01-14 16:45:11 +01:00
9 lines
198 B
YAML
9 lines
198 B
YAML
- name: Change hostname
|
|
ansible.builtin.hostname:
|
|
name: "{{ hostname }}"
|
|
- name: Install core packages
|
|
ansible.builtin.apt:
|
|
state: present
|
|
name: "{{ item }}"
|
|
with_items:
|
|
- gpg
|