Merge pull request #92964 from lopsided98/initrd-secrets-compressor
This commit is contained in:
commit
28224516e5
1 changed files with 2 additions and 1 deletions
|
@ -374,7 +374,8 @@ let
|
||||||
) config.boot.initrd.secrets)
|
) config.boot.initrd.secrets)
|
||||||
}
|
}
|
||||||
|
|
||||||
(cd "$tmp" && find . | cpio -H newc -o) | gzip >>"$1"
|
(cd "$tmp" && find . -print0 | sort -z | cpio -o -H newc -R +0:+0 --reproducible --null) | \
|
||||||
|
${config.boot.initrd.compressor} >> "$1"
|
||||||
'';
|
'';
|
||||||
|
|
||||||
in
|
in
|
||||||
|
|
Loading…
Reference in a new issue