Hi,

This is something you might want to put in /etc/rc in both -stable
and -current.

Scenario:

/tmp is MFS,
/var/tmp, /usr/tmp and /usr/local/tmp are symlinks to /tmp,
and hence /var/tmp/vi.recover does not exist at reboot and causes
«cosmetic interference» on the console during reboot.

Solution:

Add these lines after the «# Recover vi editor files.» line (about
line #345):

if [ ! -d /var/tmp/vi.recover ]; then
  mkdir /var/tmp/vi.recover;
  chmod 1777 /var/tmp/vi.recover;
  chown root:wheel /var/tmp/vi.recover;
fi

----------------------------------------------------------------------
Trond Endrestøl                          |             [EMAIL PROTECTED]
Merkantilvegen 59HB7,                    |    [EMAIL PROTECTED]
N-2815 GJØVIK, NORWAY                    |+47 61139424 || +47 63874242
Patron of The Art of Computer Programming|     FreeBSD 3.3 & Pine 4.10



To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-current" in the body of the message

Reply via email to