Coda File System

Incorrect device check in venus-setup?

From: Maurice van der Pot <griffon26_at_gentoo.org>
Date: Mon, 2 May 2005 20:33:03 +0200
venus-setup contains the following fragment:

  if [ ! -c /dev/cfs0 -o ! -c /dev/coda/0 ] ; then
    if [ ! -x /dev/MAKEDEV ] ; then
      echo 'You need a character device for the Coda kernel module'
      echo 'On *BSD systems you probably have to run "mknod /dev/cfs0 c93 0"'
    else
      ( cd /dev ; ./MAKEDEV cfs )
    fi
  fi


Shouldn't the first check be this instead?

  if [ ! -c /dev/cfs0 -a ! -c /dev/coda/0 ] ; then


Regards,
Maurice.

-- 
Maurice van der Pot

Gentoo Linux Developer   griffon26@gentoo.org     http://www.gentoo.org
Creator of BiteMe!       griffon26@kfk4ever.com   http://www.kfk4ever.com


Received on 2005-05-02 14:34:32