Ansible Playbook zur Installation von htop, tmux und anderen gängigen Systemwerkzeugen
Dieses Ansible Playbook installiert gängige Systemwerkzeuge wie htop, bmon. Ich empfehle, dass Sie die Paketliste an Ihre Bedürfnisse anpassen.
install_system_tools.yaml
---
- name: Install system tools
hosts: all
become: true
tasks:
- name: Update apt cache
apt:
update_cache: yes
- name: Install essential system tools
apt:
name:
- htop
- bmon
- iotop
- openssh-server
- tmux
- screen
- curl
- wget
- python3
- python3-pip
state: presentIf this post helped you, please consider buying me a coffee or donating via PayPal to support research & publishing of new posts on TechOverflow