diff options
-rw-r--r-- | scripts/show-image-storage.pl | 4 | ||||
-rwxr-xr-x | scripts/vyatta-boot-image.pl | 3 |
2 files changed, 7 insertions, 0 deletions
diff --git a/scripts/show-image-storage.pl b/scripts/show-image-storage.pl index 80294a5..f8de35e 100644 --- a/scripts/show-image-storage.pl +++ b/scripts/show-image-storage.pl @@ -41,7 +41,11 @@ sub better_units { # Figure out where the images live... my $imagedir = "/live/image/boot"; +my $livecd = "/live/image/live"; if (! -e $imagedir) { + if (-d $livecd) { + die "System running on Live-CD\n"; + } # Must be running on Old non-image system. $imagedir = "/boot"; if (! -e $imagedir) { diff --git a/scripts/vyatta-boot-image.pl b/scripts/vyatta-boot-image.pl index 555496b..52d5198 100755 --- a/scripts/vyatta-boot-image.pl +++ b/scripts/vyatta-boot-image.pl @@ -38,6 +38,7 @@ my $OLD_IMG_VER_STR = 'Old-non-image-installation'; my $OLD_GRUB_CFG = '/boot/grub/grub.cfg'; my $DISK_BOOT = '/boot'; my $XEN_DEFAULT_IMAGE = "$UNION_BOOT/%%default_image"; +my $LIVE_CD = '/live/image/live'; # # Globals @@ -542,6 +543,8 @@ if (-e $UNION_GRUB_CFG) { $grub_cfg = $UNION_GRUB_CFG; } elsif (-e $OLD_GRUB_CFG) { $grub_cfg = $OLD_GRUB_CFG; +} elsif ((! -d $UNION_BOOT) && (-d $LIVE_CD)) { + die "System running on Live-CD\n"; } else { print "Can not open Grub config file\n"; exit 1; |