diff options
author | Holger Levsen <holger@layer-acht.org> | 2016-01-28 00:36:09 +0100 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2016-01-28 00:36:09 +0100 |
commit | 66abc9f4cd52759b8251898ec9f364afa0050eff (patch) | |
tree | 7c7ce910be5c3c2e683e85cda9d62a46b2aa1eb6 | |
parent | d9aafa4637901fe345084385c676d7a56c40dec8 (diff) | |
download | jenkins.debian.net-66abc9f4cd52759b8251898ec9f364afa0050eff.tar.xz |
torbrowser tests: always install ca-certificates
-rwxr-xr-x | bin/test_torbrowser-launcher.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/test_torbrowser-launcher.sh b/bin/test_torbrowser-launcher.sh index ca7c7375..e300263a 100755 --- a/bin/test_torbrowser-launcher.sh +++ b/bin/test_torbrowser-launcher.sh @@ -150,8 +150,8 @@ announce_problem_and_abort_silently() { prepare_other_packages() { 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 openssl + echo "$(date -u ) - installing tor and ca-certificates 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 ca-certificates else echo "$(date -u ) - installing ca-certificates as this test will download torbrowser via https." schroot --run-session -c $SESSION --directory $TMPDIR -u root -- apt-get install -y ca-certificates |