blob: 5c6d8d729b30c48272b35ee1e3060a9214a87056 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
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
|