#!/bin/sh
[ -n "${IPKG_INSTROOT}" ] || {
	echo ""
	echo "============================================"
	echo "  Jitsi Meet Video Conferencing Installed"
	echo "============================================"
	echo ""
	echo "Quick Start:"
	echo "  1. Configure: uci set jitsi.main.domain='meet.example.com'"
	echo "  2. Install:   jitsctl install"
	echo "  3. Start:     /etc/init.d/jitsi start"
	echo ""
	echo "Control commands:"
	echo "  jitsctl status   - Show service status"
	echo "  jitsctl logs     - View container logs"
	echo "  jitsctl shell    - Access container shell"
	echo ""
	echo "Web interface: https://<your-domain>"
	echo ""
}
exit 0
