#!/bin/bash # Update Commands Header # Shows available update commands and help information cliShowUpdateHelp() { echo "" echo "Available Update Commands:" echo "" echo " libreportal update - Interactively check for and install updates" echo " libreportal update check - Refresh the out-of-date status (no install)" echo " libreportal update apply - Non-interactively update to the latest version" echo "" echo "These commands check for and install the latest LibrePortal updates." echo "Your current configuration is backed up before updating." echo "'check' and 'apply' are also what the WebUI Update notification uses." echo "" }