diff options
Diffstat (limited to 'devel/isect/INSTALL')
-rw-r--r-- | devel/isect/INSTALL | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/devel/isect/INSTALL b/devel/isect/INSTALL new file mode 100644 index 00000000000..def18ad90a2 --- /dev/null +++ b/devel/isect/INSTALL @@ -0,0 +1,35 @@ +#!/bin/sh +# +# $NetBSD: INSTALL,v 1.1 2001/11/01 01:24:13 zuntum Exp $ +# + +case $2 in +PRE-INSTALL) + ;; +POST-INSTALL) + /bin/cat << EOF +=========================================================================== +You need to alias the hostname of the machine which will run isectd to +"isectd" on all the client machines, and add the following to +/etc/services: + +# +# isect services +# +isectd 5501/tcp # isectd +isdexec 5502/tcp # isdexecd + +The port number you specify should not conflict with any others that are +reserved. + +You can start the isect daemon by editing /etc/rc.local to run +${PKG_PREFIX}/etc/rc.d/isect.sh. +=========================================================================== +EOF + ;; +*) + echo "Unexpected argument: $2" + exit 1 + ;; +esac +exit 0 |