mirror of https://github.com/SeanOMik/znc-push.git
Added note about installing ca-certificates
I know there is a note about the default communication method not actually checking the certificate which is why libcurl is recommended. However, I just tested this without curl and it doesn't send anything without ca-certificates installed. I followed your model of making examples use `aptitude` however, I might consider changing that in the future to `apt-get` just so newcomers don't sit there wondering what `aptitude` is ;)
This commit is contained in:
parent
769fb80c48
commit
0df072b9b7
|
@ -51,6 +51,12 @@ be installed with:
|
||||||
|
|
||||||
$ sudo aptitude install znc-dev
|
$ sudo aptitude install znc-dev
|
||||||
|
|
||||||
|
In order for this plugin to properly work, you will need to ensure you have the `ca-certificates`
|
||||||
|
package on Ubuntu based systems. This is required for push to properly verify the certificate
|
||||||
|
of the service it's sending your message to.
|
||||||
|
|
||||||
|
$ sudo aptitude install ca-certificates
|
||||||
|
|
||||||
Optionally, if you want to use libcurl for http requests, you also need to install cURL
|
Optionally, if you want to use libcurl for http requests, you also need to install cURL
|
||||||
development header files.
|
development header files.
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue