10 lines
175 B
YAML
10 lines
175 B
YAML
---
|
|
- hosts: "{{ variable_host | default('lab15_standard') }}"
|
|
gather_facts: no
|
|
become: yes
|
|
tasks:
|
|
- name: apt update
|
|
become: yes
|
|
shell: apt update -y
|
|
|