Refactor | Add Utils, Firewall & Monitoring

This commit is contained in:
2025-01-23 21:33:30 -03:00
parent d0394bffe1
commit 14480e4def
11 changed files with 204 additions and 129 deletions

9
utils/install_vim.sh Normal file
View File

@@ -0,0 +1,9 @@
#!/bin/bash
function install_vim() {
# TODO: Add .config
echo "[ UTILS ]: Installing Vim"
sudo apt-get install -y vim
echo "[ UTILS ]: Vim installed succesfully"
}