ppp-ip-up
上传用户:seven77cht
上传日期:2007-01-04
资源大小:486k
文件大小:1k
源码类别:

浏览器

开发平台:

Unix_Linux

  1. #!/bin/sh
  2. #
  3. # Copyright Andrew M. Bishop 1997
  4. #
  5. # To have wwwoffled go online and start fetching when a PPP link is connected
  6. # add this to the file /etc/ppp/ip-up (you may need to change the paths).
  7. # Set the WWWOFFLE HTTP proxy server online.
  8. if [ -x /usr/local/bin/wwwoffle ]; then
  9.    /usr/local/bin/wwwoffle -online -c /var/spool/wwwoffle/wwwoffle.conf
  10. fi
  11. # Get the WWWOFFLE HTTP proxy server to fetch requested URLs.
  12. if [ -x /usr/local/bin/wwwoffle ]; then
  13.    /usr/local/bin/wwwoffle -fetch -c /var/spool/wwwoffle/wwwoffle.conf &
  14. fi