#! /bin/sh

cat << \EOF
Automatic installation has now reached its limit.
The binaries have been tested and installed.
It seems to work to some extent.
Now you need to do some very system dependant bits, i.e. auto start.
When tha machine boots, you want tickadj to be run (if necessary) and xntpd
to be started. A common way of doing this is in /etc/rc.local (or whatever)


	if	test -f /etc/ntp.conf -a -f /usr/local/bin/xntpd
	then	echo Running tickadj and starting xntpd
		tickadj -A
		ntpdate `sed -n -e 's/^peer[ 	]*\([^ 	]*\).*/\1/p' \
			 -e 's/^server[ 	]*\([^ 	]*\).*/\1/p' \
			< /etc/ntp.conf`

		/usr/local/bin/xntpd
	fi

but the details depend on your system.
(note that there are "[(space)(tab)]" and "[^(space)(tab)]" there ....
 The sed command make ntpdate call all the machines in ntp.conf)
Type "make step23" to see if a "-s" should be added to tickadj's
arg list (e.g. needed on a Sun).
If you do use tickadj, you may well have to install it manually ...

Over to you !

Don't forget to fill in & return the form !
EOF
