Revert "dependencies: check that SSL certificates are installed"

This reverts commit d66cd067f3.

SSL certificates are no always installed in /etc/ssl/certs. For example, on
CentOS 5.6 the default OpenSSL certificates directory is /etc/pki/tls/certs,
and wget can download using https without any problem.

Moreover, the existence of /etc/ssl/certs does not guarantee the presence of a
CA certificates bundle even on Debian. On my current Debian testing
installation the openssl package itself creates an empty /etc/ssl/certs
directory.

Signed-off-by: Baruch Siach <baruch@tkos.co.il>
Acked-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
This commit is contained in:
Baruch Siach 2013-05-19 20:27:27 +00:00 committed by Peter Korsgaard
parent c92a369fe6
commit 1e7f40ebb5

View File

@ -200,12 +200,3 @@ if ! perl -e "require Data::Dumper" > /dev/null 2>&1 ; then
/bin/echo -e "On Debian/Ubuntu distributions, install the 'perl' package."
exit 1
fi
# Check that we have the SSL certificates to make https:// downloads
# work.
if ! test -d /etc/ssl/certs; then
/bin/echo -e "Your system lacks Common CA certificates for SSL."
/bin/echo -e "This prevents https:// downloads from succeeding."
/bin/echo -e "On Debian/Ubuntu distributions, install 'ca-certificates' package."
exit 1
fi