From 4ab3e62397765f48eca5823bca5fbe5335177c78 Mon Sep 17 00:00:00 2001 From: Bob Gilligan Date: Tue, 9 Mar 2010 11:06:22 -0800 Subject: Bugfix 5424: Allow image with same version to be added to disk-based install --- scripts/install/install-functions | 12 ++++++++++++ scripts/install/install-image | 2 ++ 2 files changed, 14 insertions(+) (limited to 'scripts/install') diff --git a/scripts/install/install-functions b/scripts/install/install-functions index d88df618..07f385fa 100755 --- a/scripts/install/install-functions +++ b/scripts/install/install-functions @@ -254,6 +254,18 @@ change_password() { set_encrypted_password "$user" "$epwd" "$config" } +# returns true if it's a disk-based boot +is_disk_based_boot() +{ + islive=`grep boot=live /proc/cmdline` + if [ -z "$islive" ]; then + # Return value 0 is "true" is shell + return 0 + else + return 1 + fi +} + # returns true if it's a live cd boot is_live_cd_boot () { diff --git a/scripts/install/install-image b/scripts/install/install-image index f717588b..607dcc98 100755 --- a/scripts/install/install-image +++ b/scripts/install/install-image @@ -207,6 +207,8 @@ fi # check versions if is_live_cd_boot; then CURVER=LIVECD +elif is_disk_based_boot; then + CURVER=DISK else CURVER=$(get_cur_version) fi -- cgit v1.2.3