diff options
Diffstat (limited to 'scripts/show-image-storage.pl')
-rw-r--r-- | scripts/show-image-storage.pl | 4 |
1 files changed, 4 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) { |