diff options
author | dancer <dancer> | 2002-04-30 08:40:22 +0000 |
---|---|---|
committer | dancer <dancer> | 2002-04-30 08:40:22 +0000 |
commit | 3ccde241a09e55caac995e6946fe345ed86fbdb0 (patch) | |
tree | 35419dac6bcee5232a6282aef60ac24768fc18af | |
parent | dfd1783929e20f16bb8afff614e5cd280059d75c (diff) | |
download | pbuilder-3ccde241a09e55caac995e6946fe345ed86fbdb0.tar pbuilder-3ccde241a09e55caac995e6946fe345ed86fbdb0.tar.gz |
Documentation updates, and adding examples to CVS repository finally.
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | debian/changelog | 4 | ||||
-rw-r--r-- | examples/D10tmp | 6 | ||||
-rw-r--r-- | examples/D15start-stop-daemon | 4 | ||||
-rw-r--r-- | pbuilderrc.5 | 16 |
5 files changed, 33 insertions, 2 deletions
@@ -1,3 +1,8 @@ +2002-04-30 Junichi Uekawa <dancer@debian.org> + + * pbuilderrc.5: updated documentation by comment from Steven M + Robbins. I appreciate this! + 2002-04-20 Junichi Uekawa <dancer@debian.org> * debian/TODO: update a little bit. diff --git a/debian/changelog b/debian/changelog index 4118c12..41078ca 100644 --- a/debian/changelog +++ b/debian/changelog @@ -3,8 +3,10 @@ pbuilder (0.27) unstable; urgency=low * new release, not yet released * fix messages in pbuilder-satisfydepends to make it more parsable. * TODO: updated + * pbuilderrc.5: updated documentation by comment from Steven M + Robbins. Many thanks. (closes: #144919) - -- Junichi Uekawa <dancer@debian.org> Fri, 5 Apr 2002 17:56:09 +0900 + -- Junichi Uekawa <dancer@debian.org> Tue, 30 Apr 2002 17:39:48 +0900 pbuilder (0.26) unstable; urgency=low diff --git a/examples/D10tmp b/examples/D10tmp new file mode 100644 index 0000000..b522a84 --- /dev/null +++ b/examples/D10tmp @@ -0,0 +1,6 @@ +#!/bin/bash +#create $TMP and $TMPDIR +[ -n "$TMP" -a ! -d "$TMP" ] && mkdir "$TMP" +[ -n "$TMPDIR" -a ! -d "$TMPDIR" ] && mkdir "$TMPDIR" + + diff --git a/examples/D15start-stop-daemon b/examples/D15start-stop-daemon new file mode 100644 index 0000000..498bf68 --- /dev/null +++ b/examples/D15start-stop-daemon @@ -0,0 +1,4 @@ +#!/bin/bash +# create a fake start-stop-daemon + +ln -sf /bin/true /sbin/start-stop-daemon diff --git a/pbuilderrc.5 b/pbuilderrc.5 index f38ab9f..c01d041 100644 --- a/pbuilderrc.5 +++ b/pbuilderrc.5 @@ -63,11 +63,25 @@ the chroot. Specify the mirror site which contains .B "non-US" distribution. + .TP .BI "OTHERMIRROR=" """deb http://www.home.com/updates/ ./""" -Add other sources which you want to have added to +Add other lines which you want to have added to .B "/etc/apt/sources.list" here. +The contents of this variable are inserted into the +.B "/etc/apt/sources.list" +verbatim inside the chroot, so be sure to follow the syntax rules of +.RI "sources.list (" 5 ")." +These lines appear at the beginning of the +constructed sources file, so this is the place to list your +.B local +mirror sites; apt will then use them in preference to the ones +listed in +.B "MIRRORSITE" +and +.B "NONUSMIRRORSITE". + .TP .BI "export http_proxy=" "http://your-proxy:8080/" Defines the proxy for http connection. |