15 lines
321 B
YAML
15 lines
321 B
YAML
---
|
|
- name: Install bpytop from distro repo
|
|
hosts: Server # ggf. anpassen
|
|
become: true
|
|
|
|
tasks:
|
|
- name: Update apt cache
|
|
ansible.builtin.apt:
|
|
update_cache: yes
|
|
cache_valid_time: 3600
|
|
|
|
- name: Install bpytop
|
|
ansible.builtin.apt:
|
|
name: bpytop
|
|
state: present |