- Add functionality to query online sources (Keyservers, etc) for certificates. - Use introducers to determine which UserIDs should be fetched from online soources. Check certifications before importing certifiactes into the local cert store. - start docker image for local end-to-end testing.
18 lines
251 B
Bash
Executable File
18 lines
251 B
Bash
Executable File
#!/usr/bin/bash
|
|
|
|
DOMAIN=$1
|
|
IP=$2
|
|
|
|
if [ "$DOMAIN" == "" ] ; then
|
|
echo "USAGE: $0 DOMAIN IP"
|
|
exit 1
|
|
fi
|
|
|
|
if [ "$IP" == "" ] ; then
|
|
echo "USAGE: $0 DOMAIN IP"
|
|
exit 1
|
|
fi
|
|
|
|
/usr/bin/gen_tls_cert.sh $DOMAIN
|
|
/usr/bin/gen_hockeypuck_conf.sh $DOMAIN $IP
|