diff options
author | Junichi Uekawa <dancer@netfort.gr.jp> | 2010-07-05 22:18:05 +0900 |
---|---|---|
committer | Junichi Uekawa <dancer@netfort.gr.jp> | 2010-07-05 22:18:05 +0900 |
commit | d5e06cb5cae17d5f8b6ce1954e35443b2c7a7df3 (patch) | |
tree | 26c07d628f60b2872ad7c18a68880c130388523e /pbuilder-satisfydepends-classic | |
parent | 68c7f72fd56e20ddb6a2e83bdd355c46af9620ea (diff) | |
download | pbuilder-d5e06cb5cae17d5f8b6ce1954e35443b2c7a7df3.tar pbuilder-d5e06cb5cae17d5f8b6ce1954e35443b2c7a7df3.tar.gz |
Add an option to verify key signatures. (closes: #579028)
By unsetting APTGETOPT, and setting
PBUILDERSATISFYDEPENDSOPT=('--check-key'), the user now has an option
of verifying the key signature of each package against the installed
keyring.
Diffstat (limited to 'pbuilder-satisfydepends-classic')
-rwxr-xr-x | pbuilder-satisfydepends-classic | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pbuilder-satisfydepends-classic b/pbuilder-satisfydepends-classic index c38e139..20f481a 100755 --- a/pbuilder-satisfydepends-classic +++ b/pbuilder-satisfydepends-classic @@ -128,10 +128,10 @@ checkbuilddep_internal() { # now actually install the packages echo " -> Installing $INSTALLPKGLIST" - if ! $CHROOTEXEC apt-get -y --force-yes install $APTFLAG $INSTALLPKGLIST; then + if ! $CHROOTEXEC apt-get -y "${APTGETOPT[@]}" install $APTFLAG $INSTALLPKGLIST; then echo " -> Trying to fix apt error" # Work around an apt bug which causes configure to fail. - if $CHROOTEXEC dpkg --configure --pending && $CHROOTEXEC apt-get -y --force-yes install $APTFLAG $INSTALLPKGLIST; then + if $CHROOTEXEC dpkg --configure --pending && $CHROOTEXEC apt-get -y "${APTGETOPT[@]}" install $APTFLAG $INSTALLPKGLIST; then echo " -> Apt bug workaround succeeded" elif [ "$CONTINUE_FAIL" != "yes" ]; then echo "E: Unrecoverable error installing build-dependencies." >&2 |