diff options
Diffstat (limited to 'helpers')
-rwxr-xr-x | helpers/lh_binary_disk | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/helpers/lh_binary_disk b/helpers/lh_binary_disk index 04db1ac..7cb707f 100755 --- a/helpers/lh_binary_disk +++ b/helpers/lh_binary_disk @@ -28,10 +28,13 @@ Arguments "${@}" Read_conffile config/all config/common config/bootstrap config/chroot config/binary config/source Set_defaults -if [ "${LH_BINARY_IMAGES}" != "iso" ] -then - exit 0 -fi +case "${LH_BINARY_IMAGES}" in + iso|usb-hdd) + ;; + *) + exit 0 + ;; +esac Echo_message "Begin installing disk information..." |