From 2f2f0973ec9f8b34d9ac014d0a47c2f87f06830c Mon Sep 17 00:00:00 2001 From: Adam Williamson Date: Sat, 1 Dec 2018 09:05:48 -0800 Subject: [PATCH] Update shrink disk image names in templates We weren't using the gpt-labelled one, so I took it out of createhdds; that makes the name of the mbr-labelled one lose its label tag, so we need to update that name here. Signed-off-by: Adam Williamson --- templates | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/templates b/templates index 41e8d7e9..55402f10 100755 --- a/templates +++ b/templates @@ -5148,7 +5148,7 @@ name => "install_shrink_ext4", settings => [ { key => "ROOT_PASSWORD", value => "weakpassword" }, - { key => "HDD_1", value => "disk_shrink_ext4_mbr.img" }, + { key => "HDD_1", value => "disk_shrink_ext4.img" }, { key => "PARTITIONING", value => "guided_shrink" }, ], }, @@ -5156,7 +5156,7 @@ name => "install_shrink_ntfs", settings => [ { key => "ROOT_PASSWORD", value => "weakpassword" }, - { key => "HDD_1", value => "disk_shrink_ntfs_mbr.img" }, + { key => "HDD_1", value => "disk_shrink_ntfs.img" }, { key => "PARTITIONING", value => "guided_shrink" }, ], },