You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
302 B
11 lines
302 B
#!/bin/bash
|
|
|
|
# Copy PHPki CAcert in the global cert store
|
|
# and run c_rehash
|
|
|
|
if [ -e /opt/phpki/phpki-store/CA/certs/cacert.pem ]; then
|
|
cp -f /opt/phpki/phpki-store/CA/certs/cacert.pem /etc/pki/tls/certs/cacert.pem
|
|
chmod 644 /etc/pki/tls/certs/cacert.pem
|
|
fi
|
|
|
|
/usr/bin/c_rehash /etc/pki/tls/certs/
|
|
|