diff options
author | dancer <dancer> | 2004-07-15 22:05:31 +0000 |
---|---|---|
committer | dancer <dancer> | 2004-07-15 22:05:31 +0000 |
commit | e407829a005c06eeadab6d3e16f4fa49938d8f2a (patch) | |
tree | f633027a56575b72cd8f67af7017d9c211b0f9d7 /examples | |
parent | f4518c25ed9e609936470831a720bf80aa0db4a1 (diff) | |
download | pbuilder-e407829a005c06eeadab6d3e16f4fa49938d8f2a.tar pbuilder-e407829a005c06eeadab6d3e16f4fa49938d8f2a.tar.gz |
+2004-07-16 Junichi Uekawa <dancer@debian.org>
+
+ * pbuilder-user-mode-linux: 259325: call /sbin/halt -d -f
+ instead of just doing an exit from UML.
+ init=/bin/sh, and this is required for safe exit now, apparently.
+
+2004-07-14 Junichi Uekawa <dancer@debian.org>
+
+ * Documentation/pbuilder-doc.xml: update notes on D10tmp script.
+
+ * examples/D10tmp: mkdir -p
+
+2004-07-09 Junichi Uekawa <dancer@debian.org>
+
+ * testsuite/run-test.sh (IOSTATPID): add debemail to testsuite.
+
+ * pbuilder-buildpackage (PACKAGENAME): move SUTOUSER outside of what's fed into bash.
+ Run bash in SUTOUSER. SUTOUSER might be eating quote characters.
+
Diffstat (limited to 'examples')
-rw-r--r-- | examples/D10tmp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/D10tmp b/examples/D10tmp index cd0594e..e31faa7 100644 --- a/examples/D10tmp +++ b/examples/D10tmp @@ -1,6 +1,6 @@ #!/bin/bash #create $TMP and $TMPDIR -[ -n "$TMP" -a ! -d "$TMP" ] && mkdir "$TMP" || true -[ -n "$TMPDIR" -a ! -d "$TMPDIR" ] && mkdir "$TMPDIR" || true +[ -n "$TMP" -a ! -d "$TMP" ] && mkdir -p "$TMP" || true +[ -n "$TMPDIR" -a ! -d "$TMPDIR" ] && mkdir -p "$TMPDIR" || true |