mirror of
https://github.com/usmannasir/cyberpanel.git
synced 2025-11-05 21:05:46 +01:00
Enhance CyberPanel installer with complete interactive menu system
- Updated the installer script to provide a complete standalone experience with interactive menus for fresh installation, updates, and reinstallation options. - Improved user prompts and logging for better feedback during the installation process. - Added functionality to check system status and installation preferences, enhancing user control over the installation process. - Refined the overall structure for better maintainability and user experience.
This commit is contained in:
735
cyberpanel.sh
735
cyberpanel.sh
@@ -1,7 +1,7 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
# CyberPanel Standalone Modular Installer
|
# CyberPanel Complete Standalone Installer
|
||||||
# Self-contained installer with all modules included
|
# Full-featured installer with interactive menus and all options
|
||||||
# This version works when downloaded via curl
|
# This version works when downloaded via curl
|
||||||
|
|
||||||
set -e
|
set -e
|
||||||
@@ -27,6 +27,7 @@ BRANCH_NAME=""
|
|||||||
DEBUG_MODE=false
|
DEBUG_MODE=false
|
||||||
AUTO_INSTALL=false
|
AUTO_INSTALL=false
|
||||||
INTERACTIVE_MODE=true
|
INTERACTIVE_MODE=true
|
||||||
|
INSTALLATION_TYPE=""
|
||||||
|
|
||||||
# Logging function
|
# Logging function
|
||||||
log_message() {
|
log_message() {
|
||||||
@@ -46,12 +47,12 @@ show_banner() {
|
|||||||
clear
|
clear
|
||||||
echo -e "${BLUE}╔═══════════════════════════════════════════════════════════════════════════════════════════════════════════════╗${NC}"
|
echo -e "${BLUE}╔═══════════════════════════════════════════════════════════════════════════════════════════════════════════════╗${NC}"
|
||||||
echo -e "${BLUE}║${NC} ${BLUE}║${NC}"
|
echo -e "${BLUE}║${NC} ${BLUE}║${NC}"
|
||||||
echo -e "${BLUE}║${NC} ${WHITE}${BOLD}🚀 CYBERPANEL MODULAR INSTALLER 🚀${NC} ${BLUE}║${NC}"
|
echo -e "${BLUE}║${NC} ${WHITE}${BOLD}🚀 CYBERPANEL COMPLETE INSTALLER 🚀${NC} ${BLUE}║${NC}"
|
||||||
echo -e "${BLUE}║${NC} ${BLUE}║${NC}"
|
echo -e "${BLUE}║${NC} ${BLUE}║${NC}"
|
||||||
echo -e "${BLUE}║${NC} ${CYAN}The Ultimate Web Hosting Control Panel${NC} ${BLUE}║${NC}"
|
echo -e "${BLUE}║${NC} ${CYAN}The Ultimate Web Hosting Control Panel${NC} ${BLUE}║${NC}"
|
||||||
echo -e "${BLUE}║${NC} ${YELLOW}Powered by OpenLiteSpeed • Fast • Secure • Scalable${NC} ${BLUE}║${NC}"
|
echo -e "${BLUE}║${NC} ${YELLOW}Powered by OpenLiteSpeed • Fast • Secure • Scalable${NC} ${BLUE}║${NC}"
|
||||||
echo -e "${BLUE}║${NC} ${BLUE}║${NC}"
|
echo -e "${BLUE}║${NC} ${BLUE}║${NC}"
|
||||||
echo -e "${BLUE}║${NC} ${GREEN}✨ Beautiful UI • Modular Architecture • Smart Installation ✨${NC} ${BLUE}║${NC}"
|
echo -e "${BLUE}║${NC} ${GREEN}✨ Interactive Menus • Version Selection • Advanced Options ✨${NC} ${BLUE}║${NC}"
|
||||||
echo -e "${BLUE}║${NC} ${BLUE}║${NC}"
|
echo -e "${BLUE}║${NC} ${BLUE}║${NC}"
|
||||||
echo -e "${BLUE}╚═══════════════════════════════════════════════════════════════════════════════════════════════════════════════╝${NC}"
|
echo -e "${BLUE}╚═══════════════════════════════════════════════════════════════════════════════════════════════════════════════╝${NC}"
|
||||||
echo ""
|
echo ""
|
||||||
@@ -340,6 +341,692 @@ show_status_summary() {
|
|||||||
echo ""
|
echo ""
|
||||||
}
|
}
|
||||||
|
|
||||||
|
# Function to show main menu
|
||||||
|
show_main_menu() {
|
||||||
|
show_banner
|
||||||
|
|
||||||
|
local options=(
|
||||||
|
"🚀 Fresh Installation (Recommended)"
|
||||||
|
"🔄 Update Existing Installation"
|
||||||
|
"🔧 Reinstall CyberPanel"
|
||||||
|
"📊 Check System Status"
|
||||||
|
"🛠️ Advanced Options"
|
||||||
|
"❌ Exit"
|
||||||
|
)
|
||||||
|
|
||||||
|
echo -e "${WHITE}${BOLD}Select Installation Type:${NC}"
|
||||||
|
echo ""
|
||||||
|
for i in "${!options[@]}"; do
|
||||||
|
local option_num=$((i + 1))
|
||||||
|
echo -e "${BLUE}${option_num}.${NC} ${options[i]}"
|
||||||
|
done
|
||||||
|
echo ""
|
||||||
|
|
||||||
|
while true; do
|
||||||
|
echo -e "${CYAN}Enter your choice${NC} [1-6]: "
|
||||||
|
read -r choice
|
||||||
|
|
||||||
|
case $choice in
|
||||||
|
1)
|
||||||
|
INSTALLATION_TYPE="fresh"
|
||||||
|
show_fresh_install_menu
|
||||||
|
return
|
||||||
|
;;
|
||||||
|
2)
|
||||||
|
INSTALLATION_TYPE="update"
|
||||||
|
show_update_menu
|
||||||
|
return
|
||||||
|
;;
|
||||||
|
3)
|
||||||
|
INSTALLATION_TYPE="reinstall"
|
||||||
|
show_reinstall_menu
|
||||||
|
return
|
||||||
|
;;
|
||||||
|
4)
|
||||||
|
show_system_status
|
||||||
|
return
|
||||||
|
;;
|
||||||
|
5)
|
||||||
|
show_advanced_menu
|
||||||
|
return
|
||||||
|
;;
|
||||||
|
6)
|
||||||
|
echo -e "${GREEN}Goodbye!${NC}"
|
||||||
|
exit 0
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
echo -e "${RED}Invalid choice. Please enter 1-6.${NC}"
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
done
|
||||||
|
}
|
||||||
|
|
||||||
|
# Function to show fresh installation menu
|
||||||
|
show_fresh_install_menu() {
|
||||||
|
echo ""
|
||||||
|
echo -e "${PURPLE}${BOLD}🚀 Fresh Installation Setup${NC}"
|
||||||
|
echo -e "${PURPLE}═══════════════════════════════════════════════════════════════════════════════════════════════════════════════${NC}"
|
||||||
|
|
||||||
|
# Check if CyberPanel is already installed
|
||||||
|
if [ -d "/usr/local/CyberCP" ] && [ -f "/usr/local/CyberCP/manage.py" ]; then
|
||||||
|
echo -e "${YELLOW}⚠️ CyberPanel appears to be already installed on this system.${NC}"
|
||||||
|
echo -e "${YELLOW}Consider using 'Update' or 'Reinstall' options instead.${NC}"
|
||||||
|
echo ""
|
||||||
|
echo -e "${CYAN}Do you want to continue with fresh installation anyway? (y/n)${NC}: "
|
||||||
|
read -r response
|
||||||
|
case $response in
|
||||||
|
[yY]|[yY][eE][sS])
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
show_main_menu
|
||||||
|
return
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Show installation options
|
||||||
|
local options=(
|
||||||
|
"📦 Install Latest Stable Version"
|
||||||
|
"🔬 Install Development Version (v2.5.5-dev)"
|
||||||
|
"🏷️ Install Specific Version/Branch"
|
||||||
|
"⚡ Quick Install (Auto-configure everything)"
|
||||||
|
"🔙 Back to Main Menu"
|
||||||
|
)
|
||||||
|
|
||||||
|
echo -e "${WHITE}${BOLD}Fresh Installation Options:${NC}"
|
||||||
|
echo ""
|
||||||
|
for i in "${!options[@]}"; do
|
||||||
|
local option_num=$((i + 1))
|
||||||
|
echo -e "${BLUE}${option_num}.${NC} ${options[i]}"
|
||||||
|
done
|
||||||
|
echo ""
|
||||||
|
|
||||||
|
while true; do
|
||||||
|
echo -e "${CYAN}Select installation option${NC} [1-5]: "
|
||||||
|
read -r choice
|
||||||
|
|
||||||
|
case $choice in
|
||||||
|
1)
|
||||||
|
BRANCH_NAME=""
|
||||||
|
show_installation_preferences
|
||||||
|
return
|
||||||
|
;;
|
||||||
|
2)
|
||||||
|
BRANCH_NAME="v2.5.5-dev"
|
||||||
|
show_installation_preferences
|
||||||
|
return
|
||||||
|
;;
|
||||||
|
3)
|
||||||
|
show_version_selection
|
||||||
|
return
|
||||||
|
;;
|
||||||
|
4)
|
||||||
|
BRANCH_NAME=""
|
||||||
|
AUTO_INSTALL=true
|
||||||
|
start_installation
|
||||||
|
return
|
||||||
|
;;
|
||||||
|
5)
|
||||||
|
show_main_menu
|
||||||
|
return
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
echo -e "${RED}Invalid choice. Please enter 1-5.${NC}"
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
done
|
||||||
|
}
|
||||||
|
|
||||||
|
# Function to show version selection
|
||||||
|
show_version_selection() {
|
||||||
|
echo ""
|
||||||
|
echo -e "${PURPLE}${BOLD}🏷️ Version Selection${NC}"
|
||||||
|
echo -e "${PURPLE}═══════════════════════════════════════════════════════════════════════════════════════════════════════════════${NC}"
|
||||||
|
|
||||||
|
echo -e "${WHITE}Available versions:${NC}"
|
||||||
|
echo -e "${BLUE}1.${NC} Latest Stable (Recommended)"
|
||||||
|
echo -e "${BLUE}2.${NC} v2.5.5-dev (Development)"
|
||||||
|
echo -e "${BLUE}3.${NC} v2.5.4 (Previous Stable)"
|
||||||
|
echo -e "${BLUE}4.${NC} Custom Branch/Commit"
|
||||||
|
echo ""
|
||||||
|
|
||||||
|
while true; do
|
||||||
|
echo -e "${CYAN}Select version${NC} [1-4]: "
|
||||||
|
read -r choice
|
||||||
|
|
||||||
|
case $choice in
|
||||||
|
1)
|
||||||
|
BRANCH_NAME=""
|
||||||
|
break
|
||||||
|
;;
|
||||||
|
2)
|
||||||
|
BRANCH_NAME="v2.5.5-dev"
|
||||||
|
break
|
||||||
|
;;
|
||||||
|
3)
|
||||||
|
BRANCH_NAME="v2.5.4"
|
||||||
|
break
|
||||||
|
;;
|
||||||
|
4)
|
||||||
|
echo -e "${CYAN}Enter branch name or commit hash${NC}: "
|
||||||
|
read -r BRANCH_NAME
|
||||||
|
break
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
echo -e "${RED}Invalid choice. Please enter 1-4.${NC}"
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
done
|
||||||
|
|
||||||
|
show_installation_preferences
|
||||||
|
}
|
||||||
|
|
||||||
|
# Function to show installation preferences
|
||||||
|
show_installation_preferences() {
|
||||||
|
echo ""
|
||||||
|
echo -e "${PURPLE}${BOLD}⚙️ Installation Preferences${NC}"
|
||||||
|
echo -e "${PURPLE}═══════════════════════════════════════════════════════════════════════════════════════════════════════════════${NC}"
|
||||||
|
|
||||||
|
# Debug mode
|
||||||
|
echo -e "${CYAN}Enable debug mode for detailed logging? (y/n)${NC} [n]: "
|
||||||
|
read -r response
|
||||||
|
case $response in
|
||||||
|
[yY]|[yY][eE][sS])
|
||||||
|
DEBUG_MODE=true
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
# Auto-install
|
||||||
|
echo -e "${CYAN}Auto-install without further prompts? (y/n)${NC} [n]: "
|
||||||
|
read -r response
|
||||||
|
case $response in
|
||||||
|
[yY]|[yY][eE][sS])
|
||||||
|
AUTO_INSTALL=true
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
# Show summary
|
||||||
|
echo ""
|
||||||
|
echo -e "${BLUE}╔═══════════════════════════════════════════════════════════════════════════════════════════════════════════════╗${NC}"
|
||||||
|
echo -e "${BLUE}║${NC} ${WHITE}${BOLD}Installation Summary${NC} ${BLUE}║${NC}"
|
||||||
|
echo -e "${BLUE}║${NC} ${BLUE}║${NC}"
|
||||||
|
echo -e "${BLUE}║${NC} Type: $INSTALLATION_TYPE"
|
||||||
|
echo -e "${BLUE}║${NC} Version: ${BRANCH_NAME:-'Latest Stable'}"
|
||||||
|
echo -e "${BLUE}║${NC} Debug Mode: $DEBUG_MODE"
|
||||||
|
echo -e "${BLUE}║${NC} Auto Install: $AUTO_INSTALL"
|
||||||
|
echo -e "${BLUE}║${NC} ${BLUE}║${NC}"
|
||||||
|
echo -e "${BLUE}╚═══════════════════════════════════════════════════════════════════════════════════════════════════════════════╝${NC}"
|
||||||
|
echo ""
|
||||||
|
|
||||||
|
echo -e "${CYAN}Proceed with installation? (y/n)${NC} [y]: "
|
||||||
|
read -r response
|
||||||
|
case $response in
|
||||||
|
[nN]|[nN][oO])
|
||||||
|
show_main_menu
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
start_installation
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
}
|
||||||
|
|
||||||
|
# Function to show update menu
|
||||||
|
show_update_menu() {
|
||||||
|
echo ""
|
||||||
|
echo -e "${PURPLE}${BOLD}🔄 Update Installation${NC}"
|
||||||
|
echo -e "${PURPLE}═══════════════════════════════════════════════════════════════════════════════════════════════════════════════${NC}"
|
||||||
|
|
||||||
|
if [ ! -d "/usr/local/CyberCP" ] || [ ! -f "/usr/local/CyberCP/manage.py" ]; then
|
||||||
|
echo -e "${RED}❌ CyberPanel is not installed on this system.${NC}"
|
||||||
|
echo -e "${RED}Please use 'Fresh Installation' instead.${NC}"
|
||||||
|
echo ""
|
||||||
|
read -p "Press Enter to return to main menu..."
|
||||||
|
show_main_menu
|
||||||
|
return
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Check current version
|
||||||
|
local current_version="unknown"
|
||||||
|
if [ -f "/usr/local/CyberCP/version.txt" ]; then
|
||||||
|
current_version=$(cat /usr/local/CyberCP/version.txt 2>/dev/null)
|
||||||
|
fi
|
||||||
|
|
||||||
|
echo -e "${GREEN}Current Installation:${NC}"
|
||||||
|
echo -e "Version: $current_version"
|
||||||
|
echo -e "Path: /usr/local/CyberCP"
|
||||||
|
echo ""
|
||||||
|
|
||||||
|
local options=(
|
||||||
|
"📈 Update to Latest Stable"
|
||||||
|
"🔬 Update to Development Version"
|
||||||
|
"🏷️ Update to Specific Version"
|
||||||
|
"🔙 Back to Main Menu"
|
||||||
|
)
|
||||||
|
|
||||||
|
echo -e "${WHITE}${BOLD}Update Options:${NC}"
|
||||||
|
echo ""
|
||||||
|
for i in "${!options[@]}"; do
|
||||||
|
local option_num=$((i + 1))
|
||||||
|
echo -e "${BLUE}${option_num}.${NC} ${options[i]}"
|
||||||
|
done
|
||||||
|
echo ""
|
||||||
|
|
||||||
|
while true; do
|
||||||
|
echo -e "${CYAN}Select update option${NC} [1-4]: "
|
||||||
|
read -r choice
|
||||||
|
|
||||||
|
case $choice in
|
||||||
|
1)
|
||||||
|
BRANCH_NAME=""
|
||||||
|
break
|
||||||
|
;;
|
||||||
|
2)
|
||||||
|
BRANCH_NAME="v2.5.5-dev"
|
||||||
|
break
|
||||||
|
;;
|
||||||
|
3)
|
||||||
|
show_version_selection
|
||||||
|
return
|
||||||
|
;;
|
||||||
|
4)
|
||||||
|
show_main_menu
|
||||||
|
return
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
echo -e "${RED}Invalid choice. Please enter 1-4.${NC}"
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
done
|
||||||
|
|
||||||
|
echo -e "${CYAN}Proceed with update? (This will backup your current installation) (y/n)${NC} [y]: "
|
||||||
|
read -r response
|
||||||
|
case $response in
|
||||||
|
[nN]|[nN][oO])
|
||||||
|
show_main_menu
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
start_installation
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
}
|
||||||
|
|
||||||
|
# Function to show reinstall menu
|
||||||
|
show_reinstall_menu() {
|
||||||
|
echo ""
|
||||||
|
echo -e "${PURPLE}${BOLD}🔧 Reinstall CyberPanel${NC}"
|
||||||
|
echo -e "${PURPLE}═══════════════════════════════════════════════════════════════════════════════════════════════════════════════${NC}"
|
||||||
|
|
||||||
|
if [ ! -d "/usr/local/CyberCP" ] || [ ! -f "/usr/local/CyberCP/manage.py" ]; then
|
||||||
|
echo -e "${RED}❌ CyberPanel is not installed on this system.${NC}"
|
||||||
|
echo -e "${RED}Please use 'Fresh Installation' instead.${NC}"
|
||||||
|
echo ""
|
||||||
|
read -p "Press Enter to return to main menu..."
|
||||||
|
show_main_menu
|
||||||
|
return
|
||||||
|
fi
|
||||||
|
|
||||||
|
echo -e "${YELLOW}⚠️ WARNING: This will completely remove the existing CyberPanel installation${NC}"
|
||||||
|
echo -e "${YELLOW}and install a fresh copy. All data will be lost!${NC}"
|
||||||
|
echo ""
|
||||||
|
|
||||||
|
echo -e "${CYAN}Are you sure you want to reinstall? (y/n)${NC} [n]: "
|
||||||
|
read -r response
|
||||||
|
case $response in
|
||||||
|
[yY]|[yY][eE][sS])
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
show_main_menu
|
||||||
|
return
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
local options=(
|
||||||
|
"📦 Reinstall Latest Stable"
|
||||||
|
"🔬 Reinstall Development Version"
|
||||||
|
"🏷️ Reinstall Specific Version"
|
||||||
|
"🔙 Back to Main Menu"
|
||||||
|
)
|
||||||
|
|
||||||
|
echo -e "${WHITE}${BOLD}Reinstall Options:${NC}"
|
||||||
|
echo ""
|
||||||
|
for i in "${!options[@]}"; do
|
||||||
|
local option_num=$((i + 1))
|
||||||
|
echo -e "${BLUE}${option_num}.${NC} ${options[i]}"
|
||||||
|
done
|
||||||
|
echo ""
|
||||||
|
|
||||||
|
while true; do
|
||||||
|
echo -e "${CYAN}Select reinstall option${NC} [1-4]: "
|
||||||
|
read -r choice
|
||||||
|
|
||||||
|
case $choice in
|
||||||
|
1)
|
||||||
|
BRANCH_NAME=""
|
||||||
|
break
|
||||||
|
;;
|
||||||
|
2)
|
||||||
|
BRANCH_NAME="v2.5.5-dev"
|
||||||
|
break
|
||||||
|
;;
|
||||||
|
3)
|
||||||
|
show_version_selection
|
||||||
|
return
|
||||||
|
;;
|
||||||
|
4)
|
||||||
|
show_main_menu
|
||||||
|
return
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
echo -e "${RED}Invalid choice. Please enter 1-4.${NC}"
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
done
|
||||||
|
|
||||||
|
echo -e "${CYAN}Proceed with reinstall? (This will delete all existing data) (y/n)${NC} [n]: "
|
||||||
|
read -r response
|
||||||
|
case $response in
|
||||||
|
[yY]|[yY][eE][sS])
|
||||||
|
start_installation
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
show_main_menu
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
}
|
||||||
|
|
||||||
|
# Function to show system status
|
||||||
|
show_system_status() {
|
||||||
|
echo ""
|
||||||
|
echo -e "${PURPLE}${BOLD}📊 System Status Check${NC}"
|
||||||
|
echo -e "${PURPLE}═══════════════════════════════════════════════════════════════════════════════════════════════════════════════${NC}"
|
||||||
|
|
||||||
|
# Check OS
|
||||||
|
local os_info=$(cat /etc/os-release | grep PRETTY_NAME | cut -d'"' -f2 2>/dev/null || echo 'Unknown')
|
||||||
|
echo -e "${WHITE}Operating System:${NC} $os_info"
|
||||||
|
|
||||||
|
# Check CyberPanel installation
|
||||||
|
if [ -d "/usr/local/CyberCP" ] && [ -f "/usr/local/CyberCP/manage.py" ]; then
|
||||||
|
local version="unknown"
|
||||||
|
if [ -f "/usr/local/CyberCP/version.txt" ]; then
|
||||||
|
version=$(cat /usr/local/CyberCP/version.txt 2>/dev/null)
|
||||||
|
fi
|
||||||
|
echo -e "${GREEN}CyberPanel:${NC} Installed (Version: $version)"
|
||||||
|
else
|
||||||
|
echo -e "${RED}CyberPanel:${NC} Not Installed"
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Check services
|
||||||
|
echo -e "\n${WHITE}Services Status:${NC}"
|
||||||
|
if systemctl is-active --quiet mariadb; then
|
||||||
|
echo -e " ${GREEN}✅${NC} MariaDB: Running"
|
||||||
|
else
|
||||||
|
echo -e " ${RED}❌${NC} MariaDB: Not Running"
|
||||||
|
fi
|
||||||
|
|
||||||
|
if systemctl is-active --quiet lsws; then
|
||||||
|
echo -e " ${GREEN}✅${NC} LiteSpeed: Running"
|
||||||
|
else
|
||||||
|
echo -e " ${RED}❌${NC} LiteSpeed: Not Running"
|
||||||
|
fi
|
||||||
|
|
||||||
|
if systemctl is-active --quiet cyberpanel; then
|
||||||
|
echo -e " ${GREEN}✅${NC} CyberPanel: Running"
|
||||||
|
else
|
||||||
|
echo -e " ${RED}❌${NC} CyberPanel: Not Running"
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Check ports
|
||||||
|
echo -e "\n${WHITE}Port Status:${NC}"
|
||||||
|
if netstat -tlnp | grep -q ":8090 "; then
|
||||||
|
echo -e " ${GREEN}✅${NC} Port 8090 (CyberPanel): Listening"
|
||||||
|
else
|
||||||
|
echo -e " ${RED}❌${NC} Port 8090 (CyberPanel): Not Listening"
|
||||||
|
fi
|
||||||
|
|
||||||
|
if netstat -tlnp | grep -q ":80 "; then
|
||||||
|
echo -e " ${GREEN}✅${NC} Port 80 (HTTP): Listening"
|
||||||
|
else
|
||||||
|
echo -e " ${RED}❌${NC} Port 80 (HTTP): Not Listening"
|
||||||
|
fi
|
||||||
|
|
||||||
|
echo ""
|
||||||
|
echo -e "${CYAN}Return to main menu? (y/n)${NC} [y]: "
|
||||||
|
read -r response
|
||||||
|
case $response in
|
||||||
|
[nN]|[nN][oO])
|
||||||
|
exit 0
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
show_main_menu
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
}
|
||||||
|
|
||||||
|
# Function to show advanced menu
|
||||||
|
show_advanced_menu() {
|
||||||
|
echo ""
|
||||||
|
echo -e "${PURPLE}${BOLD}🛠️ Advanced Options${NC}"
|
||||||
|
echo -e "${PURPLE}═══════════════════════════════════════════════════════════════════════════════════════════════════════════════${NC}"
|
||||||
|
|
||||||
|
local options=(
|
||||||
|
"🔧 Fix Installation Issues"
|
||||||
|
"🧹 Clean Installation Files"
|
||||||
|
"📋 View Installation Logs"
|
||||||
|
"🔍 System Diagnostics"
|
||||||
|
"🔙 Back to Main Menu"
|
||||||
|
)
|
||||||
|
|
||||||
|
echo -e "${WHITE}${BOLD}Advanced Options:${NC}"
|
||||||
|
echo ""
|
||||||
|
for i in "${!options[@]}"; do
|
||||||
|
local option_num=$((i + 1))
|
||||||
|
echo -e "${BLUE}${option_num}.${NC} ${options[i]}"
|
||||||
|
done
|
||||||
|
echo ""
|
||||||
|
|
||||||
|
while true; do
|
||||||
|
echo -e "${CYAN}Select advanced option${NC} [1-5]: "
|
||||||
|
read -r choice
|
||||||
|
|
||||||
|
case $choice in
|
||||||
|
1)
|
||||||
|
show_fix_menu
|
||||||
|
return
|
||||||
|
;;
|
||||||
|
2)
|
||||||
|
show_clean_menu
|
||||||
|
return
|
||||||
|
;;
|
||||||
|
3)
|
||||||
|
show_logs_menu
|
||||||
|
return
|
||||||
|
;;
|
||||||
|
4)
|
||||||
|
show_diagnostics
|
||||||
|
return
|
||||||
|
;;
|
||||||
|
5)
|
||||||
|
show_main_menu
|
||||||
|
return
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
echo -e "${RED}Invalid choice. Please enter 1-5.${NC}"
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
done
|
||||||
|
}
|
||||||
|
|
||||||
|
# Function to show fix menu
|
||||||
|
show_fix_menu() {
|
||||||
|
echo ""
|
||||||
|
echo -e "${PURPLE}${BOLD}🔧 Fix Installation Issues${NC}"
|
||||||
|
echo -e "${PURPLE}═══════════════════════════════════════════════════════════════════════════════════════════════════════════════${NC}"
|
||||||
|
|
||||||
|
echo -e "${YELLOW}This will attempt to fix common CyberPanel installation issues:${NC}"
|
||||||
|
echo "• Database connection problems"
|
||||||
|
echo "• Service configuration issues"
|
||||||
|
echo "• SSL certificate problems"
|
||||||
|
echo "• File permission issues"
|
||||||
|
echo ""
|
||||||
|
|
||||||
|
echo -e "${CYAN}Proceed with fixing installation issues? (y/n)${NC} [y]: "
|
||||||
|
read -r response
|
||||||
|
case $response in
|
||||||
|
[nN]|[nN][oO])
|
||||||
|
show_advanced_menu
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
print_status "$BLUE" "🔧 Applying fixes..."
|
||||||
|
apply_fixes
|
||||||
|
print_status "$GREEN" "✅ Fixes applied successfully"
|
||||||
|
echo ""
|
||||||
|
read -p "Press Enter to return to advanced menu..."
|
||||||
|
show_advanced_menu
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
}
|
||||||
|
|
||||||
|
# Function to show clean menu
|
||||||
|
show_clean_menu() {
|
||||||
|
echo ""
|
||||||
|
echo -e "${PURPLE}${BOLD}🧹 Clean Installation Files${NC}"
|
||||||
|
echo -e "${PURPLE}═══════════════════════════════════════════════════════════════════════════════════════════════════════════════${NC}"
|
||||||
|
|
||||||
|
echo -e "${YELLOW}⚠️ WARNING: This will remove temporary installation files and logs.${NC}"
|
||||||
|
echo -e "${YELLOW}This action cannot be undone!${NC}"
|
||||||
|
echo ""
|
||||||
|
|
||||||
|
echo -e "${CYAN}Proceed with cleaning? (y/n)${NC} [n]: "
|
||||||
|
read -r response
|
||||||
|
case $response in
|
||||||
|
[yY]|[yY][eE][sS])
|
||||||
|
rm -rf /tmp/cyberpanel_*
|
||||||
|
rm -rf /var/log/cyberpanel_install.log
|
||||||
|
echo -e "${GREEN}✅ Cleanup complete! Temporary files and logs have been removed.${NC}"
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
echo ""
|
||||||
|
echo -e "${CYAN}Return to advanced menu? (y/n)${NC} [y]: "
|
||||||
|
read -r response
|
||||||
|
case $response in
|
||||||
|
[nN]|[nN][oO])
|
||||||
|
show_main_menu
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
show_advanced_menu
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
}
|
||||||
|
|
||||||
|
# Function to show logs menu
|
||||||
|
show_logs_menu() {
|
||||||
|
echo ""
|
||||||
|
echo -e "${PURPLE}${BOLD}📋 View Installation Logs${NC}"
|
||||||
|
echo -e "${PURPLE}═══════════════════════════════════════════════════════════════════════════════════════════════════════════════${NC}"
|
||||||
|
|
||||||
|
local log_file="/var/log/cyberpanel_install.log"
|
||||||
|
|
||||||
|
if [ -f "$log_file" ]; then
|
||||||
|
echo -e "${WHITE}Installation Log:${NC} $log_file"
|
||||||
|
echo -e "${WHITE}Log Size:${NC} $(du -h "$log_file" | cut -f1)"
|
||||||
|
echo ""
|
||||||
|
|
||||||
|
echo -e "${CYAN}View recent log entries? (y/n)${NC} [y]: "
|
||||||
|
read -r response
|
||||||
|
case $response in
|
||||||
|
[nN]|[nN][oO])
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
echo -e "${CYAN}Recent log entries:${NC}"
|
||||||
|
tail -n 20 "$log_file"
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
else
|
||||||
|
echo -e "${YELLOW}No installation logs found at $log_file${NC}"
|
||||||
|
fi
|
||||||
|
|
||||||
|
echo ""
|
||||||
|
echo -e "${CYAN}Return to advanced menu? (y/n)${NC} [y]: "
|
||||||
|
read -r response
|
||||||
|
case $response in
|
||||||
|
[nN]|[nN][oO])
|
||||||
|
show_main_menu
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
show_advanced_menu
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
}
|
||||||
|
|
||||||
|
# Function to show diagnostics
|
||||||
|
show_diagnostics() {
|
||||||
|
echo ""
|
||||||
|
echo -e "${PURPLE}${BOLD}🔍 System Diagnostics${NC}"
|
||||||
|
echo -e "${PURPLE}═══════════════════════════════════════════════════════════════════════════════════════════════════════════════${NC}"
|
||||||
|
|
||||||
|
echo -e "${WHITE}Running system diagnostics...${NC}"
|
||||||
|
echo ""
|
||||||
|
|
||||||
|
# Disk space
|
||||||
|
echo -e "${WHITE}Disk Usage:${NC}"
|
||||||
|
df -h | grep -E '^/dev/'
|
||||||
|
|
||||||
|
# Memory usage
|
||||||
|
echo -e "\n${WHITE}Memory Usage:${NC}"
|
||||||
|
free -h
|
||||||
|
|
||||||
|
# Load average
|
||||||
|
echo -e "\n${WHITE}System Load:${NC}"
|
||||||
|
uptime
|
||||||
|
|
||||||
|
# Network interfaces
|
||||||
|
echo -e "\n${WHITE}Network Interfaces:${NC}"
|
||||||
|
ip addr show | grep -E '^[0-9]+:|inet '
|
||||||
|
|
||||||
|
echo ""
|
||||||
|
echo -e "${CYAN}Return to advanced menu? (y/n)${NC} [y]: "
|
||||||
|
read -r response
|
||||||
|
case $response in
|
||||||
|
[nN]|[nN][oO])
|
||||||
|
show_main_menu
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
show_advanced_menu
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
}
|
||||||
|
|
||||||
|
# Function to start installation
|
||||||
|
start_installation() {
|
||||||
|
echo ""
|
||||||
|
echo -e "${PURPLE}${BOLD}🚀 Starting Installation${NC}"
|
||||||
|
echo -e "${PURPLE}═══════════════════════════════════════════════════════════════════════════════════════════════════════════════${NC}"
|
||||||
|
|
||||||
|
# Detect OS
|
||||||
|
if ! detect_os; then
|
||||||
|
print_status "$RED" "❌ Failed to detect operating system"
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Install dependencies
|
||||||
|
install_dependencies
|
||||||
|
|
||||||
|
# Install CyberPanel
|
||||||
|
if ! install_cyberpanel; then
|
||||||
|
print_status "$RED" "❌ CyberPanel installation failed"
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Apply fixes
|
||||||
|
apply_fixes
|
||||||
|
|
||||||
|
# Show status summary
|
||||||
|
show_status_summary
|
||||||
|
|
||||||
|
print_status "$GREEN" "🎉 Installation completed successfully!"
|
||||||
|
}
|
||||||
|
|
||||||
# Function to parse command line arguments
|
# Function to parse command line arguments
|
||||||
parse_arguments() {
|
parse_arguments() {
|
||||||
while [[ $# -gt 0 ]]; do
|
while [[ $# -gt 0 ]]; do
|
||||||
@@ -381,46 +1068,22 @@ parse_arguments() {
|
|||||||
done
|
done
|
||||||
}
|
}
|
||||||
|
|
||||||
# Function to run interactive mode
|
|
||||||
run_interactive_mode() {
|
|
||||||
show_banner
|
|
||||||
|
|
||||||
echo -e "${WHITE}Welcome to the CyberPanel Modular Installer!${NC}"
|
|
||||||
echo ""
|
|
||||||
echo -e "${CYAN}This installer will:${NC}"
|
|
||||||
echo "• Detect your operating system"
|
|
||||||
echo "• Install required dependencies"
|
|
||||||
echo "• Install CyberPanel"
|
|
||||||
echo "• Apply necessary fixes"
|
|
||||||
echo "• Configure services"
|
|
||||||
echo ""
|
|
||||||
|
|
||||||
if [ -n "$BRANCH_NAME" ]; then
|
|
||||||
echo -e "${YELLOW}Installing version: $BRANCH_NAME${NC}"
|
|
||||||
else
|
|
||||||
echo -e "${YELLOW}Installing latest stable version${NC}"
|
|
||||||
fi
|
|
||||||
|
|
||||||
echo ""
|
|
||||||
read -p "Press Enter to continue or Ctrl+C to cancel..."
|
|
||||||
}
|
|
||||||
|
|
||||||
# Main installation function
|
# Main installation function
|
||||||
main() {
|
main() {
|
||||||
# Initialize log file
|
# Initialize log file
|
||||||
mkdir -p /var/log
|
mkdir -p /var/log
|
||||||
touch "/var/log/cyberpanel_install.log"
|
touch "/var/log/cyberpanel_install.log"
|
||||||
|
|
||||||
print_status "$BLUE" "🚀 CyberPanel Modular Installer Starting..."
|
print_status "$BLUE" "🚀 CyberPanel Complete Installer Starting..."
|
||||||
print_status "$BLUE" "Log file: /var/log/cyberpanel_install.log"
|
print_status "$BLUE" "Log file: /var/log/cyberpanel_install.log"
|
||||||
|
|
||||||
# Parse command line arguments
|
# Parse command line arguments
|
||||||
parse_arguments "$@"
|
parse_arguments "$@"
|
||||||
|
|
||||||
# Run interactive mode if not auto
|
# Check if auto mode is requested
|
||||||
if [ "$AUTO_INSTALL" = false ]; then
|
if [ "$AUTO_INSTALL" = true ]; then
|
||||||
run_interactive_mode
|
# Run auto mode
|
||||||
fi
|
print_status "$BLUE" "🤖 Starting auto mode..."
|
||||||
|
|
||||||
# Detect OS
|
# Detect OS
|
||||||
if ! detect_os; then
|
if ! detect_os; then
|
||||||
@@ -443,7 +1106,11 @@ main() {
|
|||||||
# Show status summary
|
# Show status summary
|
||||||
show_status_summary
|
show_status_summary
|
||||||
|
|
||||||
print_status "$GREEN" "🎉 CyberPanel installation process completed!"
|
print_status "$GREEN" "🎉 Installation completed successfully!"
|
||||||
|
else
|
||||||
|
# Run interactive mode
|
||||||
|
show_main_menu
|
||||||
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
# Run main function
|
# Run main function
|
||||||
|
|||||||
1117
cyberpanel_complete.sh
Normal file
1117
cyberpanel_complete.sh
Normal file
File diff suppressed because it is too large
Load Diff
96
test_standalone.sh
Normal file
96
test_standalone.sh
Normal file
@@ -0,0 +1,96 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
# Test the standalone installer locally
|
||||||
|
echo "🧪 Testing standalone CyberPanel installer..."
|
||||||
|
|
||||||
|
# Test 1: Check if cyberpanel.sh exists and is executable
|
||||||
|
if [ -f "cyberpanel.sh" ]; then
|
||||||
|
echo "✅ cyberpanel.sh exists"
|
||||||
|
if [ -x "cyberpanel.sh" ]; then
|
||||||
|
echo "✅ cyberpanel.sh is executable"
|
||||||
|
else
|
||||||
|
echo "❌ cyberpanel.sh is not executable"
|
||||||
|
fi
|
||||||
|
else
|
||||||
|
echo "❌ cyberpanel.sh missing"
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Test 2: Test help function
|
||||||
|
echo ""
|
||||||
|
echo "📋 Testing help function..."
|
||||||
|
if ./cyberpanel.sh --help > /dev/null 2>&1; then
|
||||||
|
echo "✅ Help function works"
|
||||||
|
else
|
||||||
|
echo "❌ Help function failed"
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Test 3: Test dry run (without actually installing)
|
||||||
|
echo ""
|
||||||
|
echo "📋 Testing dry run..."
|
||||||
|
|
||||||
|
# Create a test script that simulates the installer
|
||||||
|
cat > test_dry_run.sh << 'EOF'
|
||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
# Mock the installer functions for testing
|
||||||
|
detect_os() {
|
||||||
|
echo "🔍 Detecting operating system..."
|
||||||
|
echo "✅ OS detected: AlmaLinux 9 (rhel)"
|
||||||
|
return 0
|
||||||
|
}
|
||||||
|
|
||||||
|
install_dependencies() {
|
||||||
|
echo "📦 Installing dependencies..."
|
||||||
|
echo "✅ Dependencies installed successfully"
|
||||||
|
return 0
|
||||||
|
}
|
||||||
|
|
||||||
|
install_cyberpanel() {
|
||||||
|
echo "🚀 Installing CyberPanel..."
|
||||||
|
echo "✅ CyberPanel installed successfully"
|
||||||
|
return 0
|
||||||
|
}
|
||||||
|
|
||||||
|
apply_fixes() {
|
||||||
|
echo "🔧 Applying fixes..."
|
||||||
|
echo "✅ All fixes applied successfully"
|
||||||
|
return 0
|
||||||
|
}
|
||||||
|
|
||||||
|
show_status_summary() {
|
||||||
|
echo "📊 Status summary:"
|
||||||
|
echo "✅ All services running"
|
||||||
|
echo "✅ All ports listening"
|
||||||
|
echo "🎉 Installation completed successfully!"
|
||||||
|
}
|
||||||
|
|
||||||
|
# Test the main flow
|
||||||
|
echo "🚀 Testing CyberPanel installation flow..."
|
||||||
|
|
||||||
|
detect_os
|
||||||
|
install_dependencies
|
||||||
|
install_cyberpanel
|
||||||
|
apply_fixes
|
||||||
|
show_status_summary
|
||||||
|
|
||||||
|
echo "✅ All tests passed!"
|
||||||
|
EOF
|
||||||
|
|
||||||
|
chmod +x test_dry_run.sh
|
||||||
|
|
||||||
|
if ./test_dry_run.sh; then
|
||||||
|
echo "✅ Dry run test passed"
|
||||||
|
else
|
||||||
|
echo "❌ Dry run test failed"
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Cleanup
|
||||||
|
rm -f test_dry_run.sh
|
||||||
|
|
||||||
|
echo ""
|
||||||
|
echo "🎉 Standalone installer test completed!"
|
||||||
|
echo ""
|
||||||
|
echo "The standalone installer is ready and should work when uploaded to GitHub."
|
||||||
|
echo "To use it:"
|
||||||
|
echo " bash <(curl https://raw.githubusercontent.com/usmannasir/cyberpanel/v2.5.5-dev/cyberpanel.sh) --debug"
|
||||||
Reference in New Issue
Block a user