openbsd-ports/comms/conserver/files/README.OpenBSD
sthen 29f3197b55 Update conserver to 8.1.16, which fixes some bugs, rolls in
pvalchev's strcpy->strlcpy diffs, and adds some new functionality
(see http://www.conserver.com/CHANGES for more details).
Our /etc/services now includes a definition for conserver,
so no need to mention it in the package installation message.

ok pvalchev (maintainer).
2008-06-21 11:29:25 +00:00

22 lines
609 B
Plaintext

Using conserver in an OpenBSD environment:
1. Customize the configuration for your needs, see /etc/conserver.cf
2. Edit /etc/rc.conf.local file:
...
conserver=YES
3. Edit /etc/rc.local file:
echo -n 'starting local daemons:'
...
if [ -f /etc/conserver.cf ]; then
if [ X"${conserver}" = X"YES" -a -x /usr/local/sbin/conserver ]; then
echo -n ' conserver'; /usr/local/sbin/conserver -d -n
fi
fi
...
echo '.'
4. See the man pages for conserver, conserver.cf, and console as well as
the files in /usr/local/share/examples/conserver for more information.