1
mirror of https://invent.kde.org/network/falkon.git synced 2024-09-21 17:52:10 +02:00
falkonOfficial/scripts/make-ca-bundle.sh
nowrep a09d6ce6e4 Using own CA certificates database from now. Closes #111
- fixing various problems with accessing / downloading content
  from secured sites
- using CA certificates from debian's ca-certificates package
- added copyright notice for Mozilla's certificates
2012-01-03 21:02:35 +01:00

9 lines
247 B
Bash
Executable File
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

#!/bin/bash
# It will probably work only for Debian based distros
cat /usr/share/ca-certificates/*/*.crt > ../src/data/data/ca-bundle.crt
cat /etc/ssl/certs/*.pem >> ../src/data/data/ca-bundle.crt
read -p "Press [ENTER] to close terminal"
exit