Note that you may need curl --insecure when fetching root CA certificates

This commit is contained in:
Nick Craig-Wood 2016-02-16 14:55:26 +00:00
parent 8cd3c25b41
commit 4676a89963
1 changed files with 6 additions and 0 deletions

View File

@ -123,3 +123,9 @@ mkdir -p /etc/ssl/certs/
curl -o /etc/ssl/certs/ca-certificates.crt https://raw.githubusercontent.com/bagder/ca-bundle/master/ca-bundle.crt
ntpclient -s -h pool.ntp.org
```
Note that you may need to add the `--insecure` option to the `curl` command line if it doesn't work without.
```
curl --insecure -o /etc/ssl/certs/ca-certificates.crt https://raw.githubusercontent.com/bagder/ca-bundle/master/ca-bundle.crt
```