Package: live-boot
Version: 3.0_a14-1
File live-boot.init generates syntax errors at shutdown:
[: 1: =: unexpected operator
The offending lines are
if [ ${NOPROMPT} = "Yes" ]
and
if [ ${NOPROMPT} = "usb" ]
due to missing quotes:
if [ "${NOPROMPT}" = "Yes" ]
if [ "${NOPROMPT}" = "usb" ]