blob: 179bd33e67555e53a74489095c670233ec05dd7a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
post_install() {
cat << EOF
You need to install the CA generated by Privaxy,
Please go to http://127.0.0.1:8000 and download the certificate via
"Download CA certificate". Install it either system-wide with
> $ sudo trust anchor --store privaxy_ca_certificate.pem
or
> Import the CA directly in browser settings
Setup your proxy settings of your client, such as Firefox or Chromium.
Go to https://github.com/Barre/privaxy/ for more information.
EOF
}
post_upgrade() {
post_install
}
|