From 7cf1fb38b0a75166f7b1cc3f920b054a7e59b046 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20Paulo=20Rechi=20Vita?= Date: Fri, 26 Jun 2020 18:28:48 -0700 Subject: [PATCH] dracut: Create reproducible images Without reproducible images, a rebuild of the initrd will create a different image file (due to things like creation time of the files in the cpio archive) even if the actual contents in it are exactly the same, adding an unnecessary download during updates. Adding 'reproducible=yes' avoids this and creates the same image files for the same content. --- src/boot/dracut/ostree.conf | 1 + 1 file changed, 1 insertion(+) diff --git a/src/boot/dracut/ostree.conf b/src/boot/dracut/ostree.conf index 612bb435..ac70494b 100755 --- a/src/boot/dracut/ostree.conf +++ b/src/boot/dracut/ostree.conf @@ -16,3 +16,4 @@ # Boston, MA 02111-1307, USA. add_dracutmodules+=" ostree systemd " +reproducible=yes