#!/bin/bash
# GitHub Repository Setup Script with curl check

echo "Welcome to the GitHub Repository Setup Script for your server provisioning project."

# Check if curl is installed

if ! command -v curl &> /dev/null; then
    echo "curl is not installed. Installing curl..."
    sudo dnf install -y curl
else
    echo "curl is already installed."
fi
