Summary: | SELinux bootstrap.sh fails with sandbox error | ||
---|---|---|---|
Product: | Gentoo Linux | Reporter: | Peter Simons <simons> |
Component: | [OLD] Core system | Assignee: | The Gentoo Linux Hardened Team <hardened> |
Status: | RESOLVED WORKSFORME | ||
Severity: | normal | CC: | azarah |
Priority: | High | ||
Version: | 1.4_rc4 | ||
Hardware: | x86 | ||
OS: | Linux | ||
Whiteboard: | |||
Package list: | Runtime testing required: | --- |
Description
Peter Simons
2003-08-10 03:20:13 UTC
I have been able to reproduce the error several times now. Setting | FEATURES="userpriv" in /etc/make.conf seems to avoid the problem, though. This is usually libtool/configure script being braindead. Usually the fix is to make sure that TEMPDIR,TMPDIR, TEMP, TMP, etc is not set before starting the bootstrap. Try to add at the top of the bootstrap.sh script: ----------------------------- TMP="/root/tmp" TEMP="/root/tmp" TMPDIR="/root/tmp" TEMPDIR="/root/tmp" ----------------------------- It might also be interesting to know if any was set in your environment ? No feedback. I lost access to the machine on which I experienced the bug, so I can't test the solution you proposed any more. Sorry. :-( I'll be re-installing my system own soon; then I'll report whether this problem still occurs or not. |