diff options
Diffstat (limited to 'scripts/rename-image.pl')
-rw-r--r-- | scripts/rename-image.pl | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/scripts/rename-image.pl b/scripts/rename-image.pl index fcdf624..8632334 100644 --- a/scripts/rename-image.pl +++ b/scripts/rename-image.pl @@ -70,8 +70,16 @@ my $cur_name; if ($cur_name =~ s/BOOT_IMAGE=\/boot\///) { $cur_name =~ s/\/vmlinuz.*//; } else { + # Boot command line is not formatted as it would be for a system + # booted via grub2 with union mounted root filesystem. Another + # possibility is that it the system is Xen booted via pygrub. + # if (-l $XEN_DEFAULT_IMAGE) { - $cur_name = readlink($XEN_DEFAULT_IMAGE); + # On Xen/pygrub systems, we figure out the running version by + # looking at the bind mount of /boot. + $cur_name = `mount | awk '/on \\/boot / { print \$1 }'`; + $cur_name =~ s/\/live\/image\/boot\///; + chomp($cur_name); } } |