blob: def18ad90a2b43f74078ea3eae8ce67dffbba035 (
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 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
|