20 lines
355 B
Bash
Executable File
20 lines
355 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
dnf config-manager setopt fedora-cisco-openh264.enabled=0
|
|
|
|
dnf -y update
|
|
|
|
dnf -y install nano rsync wget curl git mc tree openssl \
|
|
unzip zip \
|
|
mtr traceroute net-tools tcpdump bind-utils \
|
|
tcsh sysstat atop chrony ntpstat nginx \
|
|
postgresql python3 python3-devel
|
|
|
|
dnf -y install make clang
|
|
|
|
dnf -y remove python3-pip
|
|
|
|
dnf -y clean all
|