This commit is contained in:
steveseguin
2025-01-13 01:40:23 -05:00
parent 1358ba6299
commit 9f978ff4ef

View File

@@ -155,7 +155,9 @@ sudo fallocate -l 16G /swapfile
sudo chmod 600 /swapfile
sudo mkswap /swapfile
sudo swapon /swapfile
echo '/swapfile none swap sw 0 0' | sudo tee -a /etc/fstab
if ! grep -q '/swapfile none swap sw 0 0' /etc/fstab; then
echo '/swapfile none swap sw 0 0' | sudo tee -a /etc/fstab
fi
# Main script execution
echo "TURN Server Installation and Configuration"