summaryrefslogtreecommitdiff
path: root/devel/isect/pkg/INSTALL
diff options
context:
space:
mode:
Diffstat (limited to 'devel/isect/pkg/INSTALL')
-rw-r--r--devel/isect/pkg/INSTALL35
1 files changed, 35 insertions, 0 deletions
diff --git a/devel/isect/pkg/INSTALL b/devel/isect/pkg/INSTALL
new file mode 100644
index 00000000000..5c6d8d729b3
--- /dev/null
+++ b/devel/isect/pkg/INSTALL
@@ -0,0 +1,35 @@
+#!/bin/sh
+#
+# $NetBSD: INSTALL,v 1.1.1.1 1999/09/15 18:56:21 jlam 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