#!/bin/bash # System Commands Header # Shows available system commands and help information cliShowSystemHelp() { echo "" echo "Available System Commands:" echo "" echo " libreportal system status - Show overall system status" echo " libreportal system update - Update LibrePortal to latest version" echo " libreportal system reset - Reinstall LibrePortal install files" echo " libreportal system reclaim - Reclaim Docker space (build cache + dangling images)" echo " libreportal system image rm [--force] - Remove specific images (comma-separated ids)" echo " libreportal system network check - Re-scan for apps stranded off the docker subnet" echo " libreportal system network heal [app] - Re-IP stranded apps from the current subnet (ports kept)" echo "" }