| Summary: | bug in ppp.linkup example | ||
|---|---|---|---|
| Product: | Documentation | Reporter: | JD Bronson <jd> |
| Component: | Books & Articles | Assignee: | Brian Somers <brian> |
| Status: | Closed FIXED | ||
| Severity: | Affects Only Me | ||
| Priority: | Normal | ||
| Version: | Latest | ||
| Hardware: | Any | ||
| OS: | Any | ||
|
Description
JD Bronson
2007-05-07 14:40:00 UTC
Responsible Changed From-To: freebsd-i386->freebsd-doc Reclassify. To submitter: where is this example file found? Hi, For reference, the file seems to be: /usr/share/examples/ppp/ppp.linkup.sample -- Tom Rhodes Responsible Changed From-To: freebsd-doc->brian Brian Somers is the PPP guy IIRC, and hanging forever seems more like a possible software bug than a doc bug. Brian, could you look at this please? State Changed From-To: open->patched I've mentioned the "danger" in r192799. I'll MFC in 1 week. Author: brian Date: Tue May 26 07:40:32 2009 New Revision: 192799 URL: http://svn.freebsd.org/changeset/base/192799 Log: Mention the danger of running programs using ``!''. PR: 112481 MFC after: 1 week Modified: head/share/examples/ppp/ppp.linkup.sample Modified: head/share/examples/ppp/ppp.linkup.sample ============================================================================== --- head/share/examples/ppp/ppp.linkup.sample Tue May 26 07:32:08 2009 (r192798) +++ head/share/examples/ppp/ppp.linkup.sample Tue May 26 07:40:32 2009 (r192799) @@ -30,11 +30,16 @@ MYADDR: 192.244.176.32: add 192.244.176.0 0 HISADDR -#You may want to execute a script after connecting. This script can do +# You may want to execute a script after connecting. This script can do # nice things such as kick off "sendmail -q", "popclient my.isp" and # "slurp -d news". It can be passed MYADDR, HISADDR and INTERFACE # as arguments too - useful for informing a DNS of your assigned IP. # +# NOTE: It's vital that you use ``!bg'' rather than ``!'' if the program +# you're running will take some time or will require network +# connectivity. Using ``!'' will delay ppp 'till the completion +# of the program being run! +# # You may also want some sound effects.... # pmdemand: _______________________________________________ svn-src-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/svn-src-all To unsubscribe, send any mail to "svn-src-all-unsubscribe@freebsd.org" Author: brian Date: Tue Jun 2 09:25:56 2009 New Revision: 193304 URL: http://svn.freebsd.org/changeset/base/193304 Log: MFC: Mention the danger of running programs using ``!''. PR: 112481 Modified: stable/7/share/examples/ (props changed) stable/7/share/examples/ppp/ppp.linkup.sample Modified: stable/7/share/examples/ppp/ppp.linkup.sample ============================================================================== --- stable/7/share/examples/ppp/ppp.linkup.sample Tue Jun 2 08:02:27 2009 (r193303) +++ stable/7/share/examples/ppp/ppp.linkup.sample Tue Jun 2 09:25:56 2009 (r193304) @@ -30,11 +30,16 @@ MYADDR: 192.244.176.32: add 192.244.176.0 0 HISADDR -#You may want to execute a script after connecting. This script can do +# You may want to execute a script after connecting. This script can do # nice things such as kick off "sendmail -q", "popclient my.isp" and # "slurp -d news". It can be passed MYADDR, HISADDR and INTERFACE # as arguments too - useful for informing a DNS of your assigned IP. # +# NOTE: It's vital that you use ``!bg'' rather than ``!'' if the program +# you're running will take some time or will require network +# connectivity. Using ``!'' will delay ppp 'till the completion +# of the program being run! +# # You may also want some sound effects.... # pmdemand: _______________________________________________ svn-src-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/svn-src-all To unsubscribe, send any mail to "svn-src-all-unsubscribe@freebsd.org" State Changed From-To: patched->closed Merged to stable/7 - r193304 |