diff options
author | ache <ache@FreeBSD.org> | 2000-07-18 11:20:08 +0800 |
---|---|---|
committer | ache <ache@FreeBSD.org> | 2000-07-18 11:20:08 +0800 |
commit | c2261bf1ecfaa93a0695345e5477de6a64294ef1 (patch) | |
tree | b95dd7ad750903287ae02bdaa6e5049ae23d2d35 /security | |
parent | 4975835d6ff4f294f9044f6b253dcba9fd997d3d (diff) | |
download | freebsd-ports-gnome-c2261bf1ecfaa93a0695345e5477de6a64294ef1.tar.gz freebsd-ports-gnome-c2261bf1ecfaa93a0695345e5477de6a64294ef1.tar.zst freebsd-ports-gnome-c2261bf1ecfaa93a0695345e5477de6a64294ef1.zip |
Use new style start/stop rc.d script
Unrestrict port since we are able to distribute crypto
Diffstat (limited to 'security')
-rw-r--r-- | security/cfs/Makefile | 3 | ||||
-rw-r--r-- | security/cfs/files/cfsd.sh | 19 |
2 files changed, 20 insertions, 2 deletions
diff --git a/security/cfs/Makefile b/security/cfs/Makefile index 531d1eb71ca9..3b60880f1f4e 100644 --- a/security/cfs/Makefile +++ b/security/cfs/Makefile @@ -17,7 +17,6 @@ MAINTAINER= green@FreeBSD.org ALL_TARGET= cfs MAN1= cattach.1 cdetach.1 cmkdir.1 cpasswd.1 cfssh.1 MAN8= ccat.8 cfsd.8 cname.8 -RESTRICTED= "contains crypto code" NO_WRKSUBDIR= yes @@ -30,6 +29,6 @@ do-install: ${INSTALL_MAN} ${MAN8} ${PREFIX}/man/man8; \ ${MKDIR} ${PREFIX}/share/doc/cfs; \ ${INSTALL_DATA} README.install notes.ms ${PREFIX}/share/doc/cfs; \ - ${INSTALL_SCRIPT} cfsd.sh ${PREFIX}/etc/rc.d + ${INSTALL_SCRIPT} ${FILESDIR}/cfsd.sh ${PREFIX}/etc/rc.d .include <bsd.port.mk> diff --git a/security/cfs/files/cfsd.sh b/security/cfs/files/cfsd.sh new file mode 100644 index 000000000000..488962b97f43 --- /dev/null +++ b/security/cfs/files/cfsd.sh @@ -0,0 +1,19 @@ +#!/bin/sh + +if ! PREFIX=$(expr $0 : "\(/.*\)/etc/rc\.d/$(basename $0)\$"); then + echo "$0: Cannot determine the PREFIX" >&2 + exit 1 +fi + +case "$1" in +start) + [ -x ${PREFIX}/sbin/cfsd ] && ${PREFIX}/sbin/cfsd > /dev/null 2>&1 && echo -n ' cfsd' + ;; +stop) + ;; +*) + echo "Usage: `basename $0` {start|stop}" >&2 + ;; +esac + +exit 0 |