Files
Ansible-Server-Migration/playbooks/software.yml
2026-06-14 21:14:33 +00:00

28 lines
543 B
YAML

- name: install required software
hosts: alma
become: yes
tasks:
- name: add epel repository
dnf:
name:
- epel-release
state: present
- name: net software
dnf:
name:
- certbot
- python3-certbot-nginx
- samba
- nfs-utils
state: present
- name: install tools
dnf:
name:
- git
- sqlite3
- net-tools
- htop
- ncdu
- nmap
- msmtp
state: present