From a8a8c3e978deba5f5a20b70ce7b871b68562ce15 Mon Sep 17 00:00:00 2001 From: Thierry Vignaud Date: Fri, 24 Jun 2016 00:01:53 +0200 Subject: fix preserving UUID when formating jfs/nilfs/xfs --- perl-install/fs/format.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'perl-install/fs') diff --git a/perl-install/fs/format.pm b/perl-install/fs/format.pm index 72e2504e1..f1efb8448 100644 --- a/perl-install/fs/format.pm +++ b/perl-install/fs/format.pm @@ -196,7 +196,7 @@ sub part_raw { # Preserve UUID on fs where we couldn't enforce it while formatting if (my $uuid_cmd = $preserve_UUID{$fs_type}) { (undef, $cmd) = @$uuid_cmd; - run_program::raw({}, $cmd, '-U', devices::make($dev)) if $cmd; + run_program::raw({}, $cmd, '-U', $part->{device_UUID}, devices::make($dev)) if $cmd; } if (member($fs_type, qw(ext3 ext4))) { -- cgit v1.2.1