diff options
author | kucharsk <none@none> | 2007-01-19 20:22:46 -0800 |
---|---|---|
committer | kucharsk <none@none> | 2007-01-19 20:22:46 -0800 |
commit | 6bde6190b7a88cc6f13fe4f0c30a2f96f6f6d68c (patch) | |
tree | bfd4ba1be1252981e490cba190de43823bb60493 /usr/src | |
parent | 60d0a5907c4864f769e937ae18e629d2f4104c89 (diff) | |
download | illumos-gate-6bde6190b7a88cc6f13fe4f0c30a2f96f6f6d68c.tar.gz |
6513201 lx_distro_install reports an error in the install log: "[[CD: not found"
Diffstat (limited to 'usr/src')
-rw-r--r-- | usr/src/lib/brand/lx/zone/lx_distro_install.ksh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr/src/lib/brand/lx/zone/lx_distro_install.ksh b/usr/src/lib/brand/lx/zone/lx_distro_install.ksh index 7fecae2cfe..eb89cfe66b 100644 --- a/usr/src/lib/brand/lx/zone/lx_distro_install.ksh +++ b/usr/src/lib/brand/lx/zone/lx_distro_install.ksh @@ -19,7 +19,7 @@ # # CDDL HEADER END # -# Copyright 2006 Sun Microsystems, Inc. All rights reserved. +# Copyright 2007 Sun Microsystems, Inc. All rights reserved. # Use is subject to license terms. # # ident "%Z%%M% %I% %E% SMI" @@ -1585,7 +1585,7 @@ iterate_media() # modify the "err_media" string accordingly. # if [[ "$install_media" = "disc" ]]; then - if [["$rd_disctype" = "DVD" ]]; then + if [[ "$rd_disctype" = "DVD" ]]; then err_media="$release_name DVD" else err_media="$release_name, CD ${cds[$cdnum]}" @@ -1777,7 +1777,7 @@ validate_iso_distros() verbose " ISO \"$iso\":" verbose " Serial #${iso_serial[$index]}" - verbose " Release Name \"${iso_release[$index]}" + verbose " Release Name \"${iso_release[$index]}\"" if [[ "${iso_disctype[$index]}" = "CD" ]]; then disctype="CD" |