From 66cd1fdb5292b969b018dd4a08816012c126dfa9 Mon Sep 17 00:00:00 2001 From: Greg Turner Date: Thu, 29 Aug 2019 17:55:26 -0700 Subject: [PATCH] creator.py: include dmsquash-live-ntfs by default Add dmsquash-live-ntfs to the default dracut modules in livecd builds. The omission of this is probably why: https://bugzilla.redhat.com/show_bug.cgi?id=1449410 didn't work out as intended (I suspect it was closed unfixed). Without this, initramfs winds up with the ntfs-3g tools lying around, but no hooks cause them to actually get used. AFAICT, this is a legit bugfix, not a "proposed enhancement" so to speak. To test that this actually fixed the problem (well, /a/ problem, at least), I used some scripts: https://github.com/gmt/test-respin-fedora-ntfsable-iso Signed-off-by: Greg Turner Signed-off-by: Brian C. Lane --- src/pylorax/creator.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pylorax/creator.py b/src/pylorax/creator.py index bd079739..a09b02ae 100644 --- a/src/pylorax/creator.py +++ b/src/pylorax/creator.py @@ -48,7 +48,7 @@ from pylorax.sysutils import joinpaths, remove # Default parameters for rebuilding initramfs, override with --dracut-args -DRACUT_DEFAULT = ["--xz", "--add", "livenet dmsquash-live convertfs pollcdrom qemu qemu-net", +DRACUT_DEFAULT = ["--xz", "--add", "livenet dmsquash-live dmsquash-live-ntfs convertfs pollcdrom qemu qemu-net", "--omit", "plymouth", "--no-hostonly", "--debug", "--no-early-microcode"] RUNTIME = "images/install.img"