24 lines
521 B
Plaintext
Raw Normal View History

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