Fix LH_INTERACTIVE switch statement.

Signed-off-by: Chris Lamb <lamby@debian.org>
This commit is contained in:
Chris Lamb 2010-08-05 20:16:01 -04:00
parent 040fd3753a
commit 0dd30405ed
1 changed files with 5 additions and 5 deletions

View File

@ -45,15 +45,15 @@ Create_lockfile .lock
case "${LH_INTERACTIVE}" in
true|shell)
Echo_message "Pausing build: starting interactive shell..."
Chroot chroot "/bin/bash --login"
Chroot chroot "/bin/bash --login"
;;
x11)
x11)
Echo_message "Pausing build: starting interactive X11..."
Chroot chroot "startx"
Chroot chroot "startx"
;;
xnest)
xnest)
Echo_message "Pausing build: starting interactive Xnest..."
#Chroot chroot "" # FIXME
#Chroot chroot "" # FIXME
;;
esac