9 lines
No EOL
158 B
YAML
9 lines
No EOL
158 B
YAML
---
|
|
- name: Update web servers
|
|
hosts: all
|
|
remote_user: root
|
|
tasks:
|
|
- name: Install htop
|
|
ansible.builtin.apt:
|
|
name: htop
|
|
state: present |