Browse Source

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
Harald Hoyer 14 years ago
parent
commit
6787b8ccee
  1. 2
      dracut

2
dracut

@ -451,7 +451,7 @@ elif [[ -f "$outfile" && ! -w "$outfile" ]]; then @@ -451,7 +451,7 @@ elif [[ -f "$outfile" && ! -w "$outfile" ]]; then
exit 1
fi

[[ $TMPDIR && ! -w $TMPDIR ]] && unset TMPDIR
readonly TMPDIR=/var/tmp
readonly initdir=$(mktemp --tmpdir=/var/tmp/ -d -t initramfs.XXXXXX)

# clean up after ourselves no matter how we die.

Loading…
Cancel
Save