diff --git a/pungi/phases/ostree_installer.py b/pungi/phases/ostree_installer.py index 5c559452..9c8f8e7f 100644 --- a/pungi/phases/ostree_installer.py +++ b/pungi/phases/ostree_installer.py @@ -108,7 +108,7 @@ class OstreeInstallerThread(WorkerThread): img.mtime = util.get_mtime(full_iso_path) img.size = util.get_file_size(full_iso_path) img.arch = arch - img.type = "boot" + img.type = "dvd-ostree" img.format = "iso" img.disc_number = 1 img.disc_count = 1 diff --git a/tests/test_ostree_installer_phase.py b/tests/test_ostree_installer_phase.py index e06e6c58..4698760f 100644 --- a/tests/test_ostree_installer_phase.py +++ b/tests/test_ostree_installer_phase.py @@ -61,7 +61,7 @@ class OstreeThreadTest(helpers.PungiTestCase): self.assertEqual(image.mtime, 13579) self.assertEqual(image.size, 1024) self.assertEqual(image.arch, 'x86_64') - self.assertEqual(image.type, "boot") + self.assertEqual(image.type, "dvd-ostree") self.assertEqual(image.format, "iso") self.assertEqual(image.disc_number, 1) self.assertEqual(image.disc_count, 1)