From owner-freebsd-doc Thu Jul 25 5: 0:20 2002 Delivered-To: freebsd-doc@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2617C37B401 for ; Thu, 25 Jul 2002 05:00:14 -0700 (PDT) Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 146ED43E81 for ; Thu, 25 Jul 2002 05:00:13 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.4/8.12.4) with ESMTP id g6PC0CJU035871 for ; Thu, 25 Jul 2002 05:00:12 -0700 (PDT) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.4/8.12.4/Submit) id g6PC0CUn035870; Thu, 25 Jul 2002 05:00:12 -0700 (PDT) Date: Thu, 25 Jul 2002 05:00:12 -0700 (PDT) Message-Id: <200207251200.g6PC0CUn035870@freefall.freebsd.org> To: freebsd-doc@FreeBSD.org Cc: From: Ross Lippert Subject: Re: docs/40841: the PPP primer gives a very wrong ppp.conf example, I think Reply-To: Ross Lippert Sender: owner-freebsd-doc@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR docs/40841; it has been noted by GNATS. From: Ross Lippert To: freebsd-gnats-submit@FreeBSD.org, ripper@eskimo.com Cc: Subject: Re: docs/40841: the PPP primer gives a very wrong ppp.conf example, I think Date: Thu, 25 Jul 2002 04:58:05 -0700 (PDT) This is a followup on how to fix the documentation. The following script modified the book.sgml sources to produce more RFC conformant examples. I chose 10.0.0.x dummy addresses because they are more similar to the ppp.conf.sample file currently in use in 4.6-RELEASE. #!/bin/sh for dir in ` find /usr/doc -type d -name ppp-primer` ; do mv "$dir/book.sgml" "$dir/book.sgml.orig" sed -e 's/127\.1\.1/10.0.0/g;s/127\.2\.2/10.0.0/g' "$dir/book.sgml.orig" > "$dir/book.sgml" done I've checked, and it does not look like this clobbers anything it shouldn't and it hits what it should. I suggest someone with commit bits apply this patch and commit it. -r To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-doc" in the body of the message