# --- # - name: Install packages # ansible.builtin.package: # name: # # - systemd-networkd # - systemd-resolved # - vim # - curl # - git # - bash-completion # - firewalld # - fastfetch # - btop # - kitty-terminfo # - bind-utils # - nmap # - tcpdump # - rsync # - tree # - ipvsadm # - conntrack # - wireshark # - xorg-x11-xauth # - xorg-x11-fonts-misc # - xorg-x11-utils # - dbus-x11 # state: latest # update_cache: true --- - name: Install packages on Debian ansible.builtin.apt: name: - jq - apache2-utils - systemd-resolved - vim - curl - git - bash-completion - firewalld # - fastfetch - btop - ncurses-term # Replaces kitty-terminfo for terminfo - dnsutils # Replaces bind-utils (for dig, etc.) - nmap - tcpdump - rsync - tree - ipvsadm - conntrack - wireshark - xauth # Replaces xorg-x11-xauth # - fonts-misc-fixed # Replaces xorg-x11-fonts-misc - x11-utils # Replaces xorg-x11-utils - dbus-x11 - gpg state: latest update_cache: true