diff options
author | dancer <dancer> | 2005-12-04 05:16:37 +0000 |
---|---|---|
committer | dancer <dancer> | 2005-12-04 05:16:37 +0000 |
commit | 5dbdf82ca9ae7ec6f11348ee788a398340c79464 (patch) | |
tree | 752311be19a8cc1ff7c5f62c44c2b04b575e0e37 /examples/B92test-pkg | |
parent | acc4f8ccf72fb9aa095d5c912cb476ba60c0c52f (diff) | |
download | pbuilder-5dbdf82ca9ae7ec6f11348ee788a398340c79464.tar pbuilder-5dbdf82ca9ae7ec6f11348ee788a398340c79464.tar.gz |
Revert to using --force-yes, since --allow-unauthenticated doesn't work with sarge
* Bug fix: "/usr/share/doc/pbuilder/examples/B90linda missing
--force-yes option", thanks to qfunk (Closes: #340715).
Note: --allow-unauthenticated is probably a better option here, but
apt-get in sarge does not support it, we will revisit it after etch.
Diffstat (limited to 'examples/B92test-pkg')
-rw-r--r-- | examples/B92test-pkg | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/B92test-pkg b/examples/B92test-pkg index a678660..078e62f 100644 --- a/examples/B92test-pkg +++ b/examples/B92test-pkg @@ -5,7 +5,7 @@ set -e echo "Installing the prerequisites" for PKG in $(ls /tmp/buildd/*.deb | sed -e's,.*/,,;s,_.*,,' ); do - apt-get install -y --allow-unauthenticated "$PKG" + apt-get install -y --force-yes "$PKG" apt-get remove -y "$PKG" done |