diff options
author | Holger Levsen <holger@layer-acht.org> | 2016-02-28 17:57:56 +0100 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2016-02-28 17:57:56 +0100 |
commit | 89ae77990db442cbb88cfbe2e2f1e32a64a94169 (patch) | |
tree | 2247df7d266b49ef1689c60e2d83da3f3fc81a00 /bin | |
parent | d30ee1a365fbbc2f70904530dd47c72148c6cbb6 (diff) | |
download | jenkins.debian.net-89ae77990db442cbb88cfbe2e2f1e32a64a94169.tar.xz |
torbrowser tests: always install ca-certificates on jessie+wheezy
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/test_torbrowser-launcher.sh | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/bin/test_torbrowser-launcher.sh b/bin/test_torbrowser-launcher.sh index c841ad46..5cc27955 100755 --- a/bin/test_torbrowser-launcher.sh +++ b/bin/test_torbrowser-launcher.sh @@ -153,6 +153,10 @@ announce_problem_and_abort_silently() { prepare_other_packages() { # once #805173 is fixed in all tested suites, ca-certificates doesn't have to be installed here anymore + if [ "$SUITE" = "wheezy" ] || [ "$SUITE" = "jessie" ] ; then + schroot --run-session -c $SESSION --directory $TMPDIR -u root -- apt-get install -y ca-certificates + fi + # tor is only a recommends and we don't install recommends by default… if $VIA_TOR ; then echo "$(date -u ) - installing tor as this test will download torbrowser via the system tor service." schroot --run-session -c $SESSION --directory $TMPDIR -u root -- apt-get install -y tor |