A free, open, self-hosted app platform (GNU AGPLv3): one-click app deploys, Traefik reverse proxy with automatic SSL, rootless Docker support, gluetun VPN routing, and a web dashboard to manage it all. Free & open forever to self-host; optional paid hosted services fund it. See PROMISE.md. Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com> Signed-off-by: librelad <librelad@digitalangels.vip>
42 lines
1.7 KiB
Bash
Executable File
42 lines
1.7 KiB
Bash
Executable File
#!/bin/bash
|
|
|
|
# Help Commands Handler
|
|
# Handles all help subcommands
|
|
|
|
cliHandleHelpCommands()
|
|
{
|
|
local category="$initial_command2"
|
|
|
|
if [[ -z "$category" ]]; then
|
|
# Show main help - list all available commands
|
|
echo ""
|
|
echo "Available Commands:"
|
|
echo ""
|
|
echo " libreportal run - Run the LibrePortal control panel"
|
|
echo " libreportal install [type] - Install LibrePortal software"
|
|
echo " libreportal update - Updates LibrePortal to the latest version"
|
|
echo " libreportal reset - Reinstall LibrePortal install files"
|
|
echo " libreportal app [action] [name] - Manage apps in LibrePortal"
|
|
echo " libreportal system [action] - System operations"
|
|
echo " libreportal validation [action] - Configuration validation"
|
|
echo " libreportal dockertype [type] - Set the Docker type"
|
|
echo " libreportal restore [type] [action] - Restore LibrePortal backups"
|
|
echo " libreportal webui [action] [options] - Manage LibrePortal WebUI"
|
|
echo " libreportal ip [command] [options] - IP management system"
|
|
echo ""
|
|
echo "Use 'libreportal help [category]' for detailed command lists"
|
|
echo ""
|
|
else
|
|
# Show help for specific category
|
|
local header_file="$install_scripts_dir/cli/commands/$category/cli_${category}_header.sh"
|
|
|
|
if [[ -f "$header_file" ]]; then
|
|
source "$header_file"
|
|
"cliShow${category^}Help"
|
|
else
|
|
isNotice "Unknown category: ${RED}$category${NC}"
|
|
cliShowHelpHelp;
|
|
fi
|
|
fi
|
|
}
|