> Borsenkow Andrej <[EMAIL PROTECTED]> writes:
>
> > On oone system /tmp is mounted as tmpfs. I do not remember I did it;
I
> > did play with msec.
> >
> > Is it done by msec or new install defaults to tmpfs?
>
> AFAIR if you choose "clean /tmp", you have tmpfs
When it has changed?
/etc/rc.d/init.d/mandrake_everytime:
#Clean up Tmp.
if [ -n "$CLEAN_TMP" ] && [ "$CLEAN_TMP" -ge 1 ];then
(
TEXPR="! -ctime -$CLEAN_TMP"
echo -n "Clean-up /tmp directory: "
cd /tmp && \
find . -xdev \
$TEXPR \
! -name . \
! \( -name lost+found -uid 0 \) \
! \( -name quota.user -uid 0 \) \
! \( -name quota.group -uid 0 \) \
... bla bla bla ...
looks sort of redundant in this case ...
-andrej