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_zsh.sh Normal file
View File

@@ -0,0 +1,9 @@
#!/bin/bash
function install_zsh() {
username = $1
echo "[ UTILS ]: Installing zsh"
sudo apt-get install -y zsh
sudo chsh -s /usr/bin/zsh "$username"
echo "[ UTILS ]: Zsh installed succesfully and set as default shell for $username"
}