xbazzi e7ba86f10a
All checks were successful
Simple Mirror to GitHub / mirror (push) Successful in 35s
Feat: add scylladb + a bunch of stuff I forgot to commit earlier
2025-08-21 23:43:52 -06:00

60 lines
1.3 KiB
YAML

# ---
# - 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