#!/bin/bash # Verify Commands Header # Shows available verify commands and help information cliShowVerifyHelp() { echo "" echo "Available Verify Commands:" echo "" echo " libreportal verify - Check installed files against the signed release manifest" echo " libreportal verify json - Refresh the integrity status file only (no console output)" echo "" echo "Confirms your installed LibrePortal code still matches the release we signed." echo "This is a self-check (it runs from the same install), so for an independent" echo "guarantee verify the release tarball yourself with 'minisign -Vm'." echo "" }