Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 24 May 2000 17:50:47 -0400 (EDT)
From:      Louis Mamakos <louie@TransSys.COM>
To:        FreeBSD-gnats-submit@freebsd.org, green@freebsd.org
Subject:   ports/18800: security/cfs ports installation fix
Message-ID:  <200005242150.RAA94526@whizzo.transsys.com>

next in thread | raw e-mail | index | archive | help

>Number:         18800
>Category:       ports
>Synopsis:       security/cfs ports installation fix
>Confidential:   no
>Severity:       non-critical
>Priority:       medium
>Responsible:    freebsd-ports
>State:          open
>Quarter:        
>Keywords:       
>Date-Required:
>Class:          sw-bug
>Submitter-Id:   current-users
>Arrival-Date:   Wed May 24 15:00:00 PDT 2000
>Closed-Date:
>Last-Modified:
>Originator:     Louis Mamakos
>Release:        FreeBSD 5.0-CURRENT i386
>Organization:
>Environment:

FreeBSD 5.0-current from a couple of weeks ago.  New version of
cfs port.

>Description:

The /usr/local/etc/rc.d/cfs.sh start-up script is incomplete

>How-To-Repeat:

Run it, and notice that /crypt isn't mounted.

>Fix:

How about a version like this instead:

#!/bin/sh

case "$1" in
start)
	if [ -x /usr/local/sbin/cfsd ]; then
	    echo -n ' [cfs'  > /dev/console
		/usr/local/sbin/cfsd && mount -o port=3049,intr localhost:/null /crypt
		echo -n ']' > /dev/console
	fi
	;;
*)
	exit
	;;
esac




>Release-Note:
>Audit-Trail:
>Unformatted:


To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe freebsd-ports" in the body of the message




Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200005242150.RAA94526>