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.
15 lines
687 B
15 lines
687 B
#!/bin/bash
|
|
cd /etc/Pegasus
|
|
|
|
if [ ! -e /etc/Pegasus/ssl-ca.cnf ] || [ ! -e /etc/Pegasus/ssl-service.cnf ] || [ ! -e /etc/pki/Pegasus/server.pem ] ||
|
|
[ ! -e /etc/pki/Pegasus/file.pem ] || [ ! -e /etc/pki/Pegasus/client.pem ]; then
|
|
if [ -x /usr/share/Pegasus/scripts/genOpenPegasusSSLCerts ]; then
|
|
# Create self-signed certificates for initial usage
|
|
/usr/share/Pegasus/scripts/genOpenPegasusSSLCerts
|
|
# Add the self-signed certificate to the local trust store
|
|
cp /etc/pki/Pegasus/ca.crt \
|
|
/etc/pki/ca-trust/source/anchors/localhost-pegasus.pem
|
|
/usr/bin/update-ca-trust extract
|
|
fi;
|
|
fi;
|