mirror of
https://github.com/motioneye-project/motioneyeos.git
synced 2025-07-30 14:46:31 +00:00
dependencies: check that SSL certificates are installed
Some packages are hosted on https:// servers, and wget only works on these if the SSL certificates are installed. For example, downloading the kernel sources from kernel.org requires those SSL certificates to be installed. [Peter: fix typo] Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
This commit is contained in:
parent
876e91dc44
commit
d66cd067f3
@ -200,3 +200,12 @@ if ! perl -e "require Data::Dumper" > /dev/null 2>&1 ; then
|
|||||||
/bin/echo -e "On Debian/Ubuntu distributions, install the 'perl' package."
|
/bin/echo -e "On Debian/Ubuntu distributions, install the 'perl' package."
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
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
|
||||||
|
Loading…
x
Reference in New Issue
Block a user