2024-05-15 00:02:59 +03:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
|
|
set -e
|
|
|
|
|
|
|
|
|
|
dnf -y update
|
|
|
|
|
|
|
|
|
|
dnf -y install nano rsync wget curl git git-all mc tree openssl \
|
2025-07-23 01:19:04 +03:00
|
|
|
chrony cronie \
|
2024-05-15 00:02:59 +03:00
|
|
|
unzip zip \
|
|
|
|
|
mtr traceroute net-tools tcpdump bind-utils \
|
|
|
|
|
tcsh sysstat atop chrony ntpstat nginx \
|
|
|
|
|
postgresql
|
|
|
|
|
|
|
|
|
|
dnf -y group install standard core \
|
|
|
|
|
hardware-support development-libs development-tools
|
|
|
|
|
dnf -y install postgresql-server-devel
|
|
|
|
|
|
|
|
|
|
dnf -y clean all
|