19 lines
391 B
Bash
Executable File
19 lines
391 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
dnf -y update
|
|
|
|
dnf -y install nano rsync wget curl git git-all mc tree openssl \
|
|
chrony cronie ntpstat \
|
|
unzip zip \
|
|
mtr traceroute net-tools tcpdump bind-utils \
|
|
tcsh sysstat atop nginx \
|
|
postgresql-client mysql-client
|
|
|
|
#dnf -y group install standard core \
|
|
# hardware-support development-libs development-tools
|
|
# dnf -y install postgresql-server-devel
|
|
|
|
dnf -y clean all
|