Coda File System

Re: Incorrect device check in venus-setup?

From: Jan Harkes <jaharkes_at_cs.cmu.edu>
Date: Mon, 2 May 2005 16:33:53 -0400
On Mon, May 02, 2005 at 08:33:03PM +0200, Maurice van der Pot wrote:
> 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

Yeah, don't know what I was thinking. Didn't we fix this same problem
before?

Jan
Received on 2005-05-02 16:34:26