dracut: set TMPDIR to /var/tmp
we really don't want anything else than /var/tmp for our operations. /tmp might be too small and any other location might not fit our needs.master
parent
00dd4db5d2
commit
6787b8ccee
2
dracut
2
dracut
|
|
@ -451,7 +451,7 @@ elif [[ -f "$outfile" && ! -w "$outfile" ]]; then
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
[[ $TMPDIR && ! -w $TMPDIR ]] && unset TMPDIR
|
readonly TMPDIR=/var/tmp
|
||||||
readonly initdir=$(mktemp --tmpdir=/var/tmp/ -d -t initramfs.XXXXXX)
|
readonly initdir=$(mktemp --tmpdir=/var/tmp/ -d -t initramfs.XXXXXX)
|
||||||
|
|
||||||
# clean up after ourselves no matter how we die.
|
# clean up after ourselves no matter how we die.
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue