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: present

Check out similar posts by category: Ansible, Linux