#!/bin/sh
[ -n "${IPKG_INSTROOT}" ] || {
	echo ""
	echo "Lyrion Media Server installed."
	echo ""
	echo "To install and start Lyrion:"
	echo "  lyrionctl install"
	echo "  /etc/init.d/lyrion start"
	echo ""
	echo "Runtime selection (edit /etc/config/lyrion):"
	echo "  option runtime 'auto'   - Auto-detect (LXC preferred)"
	echo "  option runtime 'docker' - Force Docker"
	echo "  option runtime 'lxc'    - Force LXC"
	echo ""
}
exit 0
