diff options
author | Chris Lamb <lamby@debian.org> | 2010-08-05 20:16:01 -0400 |
---|---|---|
committer | Daniel Baumann <daniel@debian.org> | 2011-03-09 19:17:17 +0100 |
commit | 1ebf50084b2fdd60883ed6bd84171c02223b1889 (patch) | |
tree | fb7a8fa21de7085ac503f5d00f4fa4396c2da940 /scripts | |
parent | 2a959aa2c7faac8b8407a8c430fa75e47adeec48 (diff) | |
download | vyos-live-build-1ebf50084b2fdd60883ed6bd84171c02223b1889.tar.gz vyos-live-build-1ebf50084b2fdd60883ed6bd84171c02223b1889.zip |
Fix LH_INTERACTIVE switch statement.
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/build/chroot_interactive | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/scripts/build/chroot_interactive b/scripts/build/chroot_interactive index dc5461df7..360557e0a 100755 --- a/scripts/build/chroot_interactive +++ b/scripts/build/chroot_interactive @@ -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 |