/mandos/trunk

To get this branch, use:
bzr branch http://bzr.recompile.se/loggerhead/mandos/trunk

« back to all changes in this revision

Viewing changes to initramfs-unpack

  • Committer: Teddy Hogeborn
  • Date: 2024-11-17 17:28:47 UTC
  • Revision ID: teddy@recompile.se-20241117172847-3bon1o16owybrmoo
mandos: Make configured network socket non-inheritable

If we are passed a pre-created created network socket as a file
descriptor, we should make it non-inheritable to checkers and other
subprocesses.

Show diffs side-by-side

added added

removed removed

Lines of Context:
65
65
        elif { $catimg 2>/dev/null | lzop --test >/dev/null 2>&1;
66
66
               [ ${PIPESTATUS[-1]} -eq 0 ]; }; then
67
67
            decomp="lzop --stdout --decompress"
 
68
        elif { $catimg 2>/dev/null | zstd --test >/dev/null 2>&1;
 
69
               [ ${PIPESTATUS[-1]} -eq 0 ]; }; then
 
70
            decomp="zstdcat --stdout --decompress"
68
71
        else
69
72
            skip=$((${skip}+1))
70
73
            echo "Could not determine compression of ${imgfile}; trying to skip ${skip} bytes" >&2