Generate mock certificates for ca-less installation

This commit is contained in:
Samuel Veloso
2020-05-26 17:36:19 +02:00
committed by Thomas Woerner
parent 4221213f1e
commit 07d7e2fa86
17 changed files with 418 additions and 14 deletions

View File

@@ -57,23 +57,15 @@ master=$1
if [ -z "$master" ]; then
echo "ERROR: master is not set"
echo
echo "usage: $0 master-fqdn replica-fqdn domain"
echo "usage: $0 master-fqdn domain"
exit 0;
fi
replica=$2
if [ -z "$master" ]; then
echo "ERROR: replica is not set"
echo
echo "usage: $0 master-fqdn replica-fqdn domain"
exit 0;
fi
domain=$3
domain=$2
if [ -z "$domain" ]; then
echo "ERROR: domain is not set"
echo
echo "usage: $0 master-fqdn replica-fqdn domain"
echo "usage: $0 master-fqdn domain"
exit 0;
fi