19 lines
213 B
Bash
Executable file
19 lines
213 B
Bash
Executable file
#!/bin/bash
|
|
|
|
set -euo pipefail
|
|
|
|
sudo apt update
|
|
sudo apt upgrade
|
|
|
|
sudo apt install -y \
|
|
btop \
|
|
fail2ban \
|
|
python3 \
|
|
python3-pip \
|
|
vim
|
|
|
|
./sshd.sh
|
|
./nginx.sh
|
|
./ufw.sh
|
|
./podman.sh
|
|
./unattended.sh
|