openbsd-ports/www/wwwoffle/pkg/MESSAGE
naddy cb07b90139 Use ${PREFIX} instead of /usr/local.
From: Xavier Santolaria <xavier@santolaria.net>
2003-10-20 16:48:48 +00:00

24 lines
521 B
Plaintext

+---------------
|
| You may want to put the following into your /etc/rc.local:
|
| # start wwwoffle
| if [ -x ${PREFIX}/sbin/wwwoffled ]; then
| echo -n ' wwwoffled'
| ${PREFIX}/sbin/wwwoffled -c /var/spool/wwwoffle/wwwoffle.conf \
| -p > /var/run/wwwoffled.pid
| fi
|
| in /etc/ppp/ppp.linkup:
|
| !bg ${PREFIX}/bin/wwwoffle -online
|
| in /etc/ppp/ppp.linkdown:
|
| !bg ${PREFIX}/bin/wwwoffle -offline
|
|
| Read ${PREFIX}/share/doc/wwwoffle/* for further information.
|
+---------------