diff options
author | Instrumental <jonathan.gathman@att.com> | 2018-10-03 19:40:44 -0500 |
---|---|---|
committer | Instrumental <jonathan.gathman@att.com> | 2018-10-03 19:41:20 -0500 |
commit | 1e3be601c78fa851333e51c6498713d1c412bd62 (patch) | |
tree | 20d56a99089f6f6d3acd055e2522675c85457ebb /conf | |
parent | 7e97d0c2c5a10e92d1233117bb60bfd9e42d35a0 (diff) |
Change FQDN Register
Issue-ID: AAF-517
Change-Id: I816e7a18f94e7f7fcfc269b29328d7009fc8f858
Signed-off-by: Instrumental <jonathan.gathman@att.com>
Diffstat (limited to 'conf')
-rw-r--r-- | conf/CA/bootstrap.sh | 13 | ||||
-rw-r--r-- | conf/CA/san_root.aaf | 1 |
2 files changed, 13 insertions, 1 deletions
diff --git a/conf/CA/bootstrap.sh b/conf/CA/bootstrap.sh index 6d4e1aa5..056fb3a4 100644 --- a/conf/CA/bootstrap.sh +++ b/conf/CA/bootstrap.sh @@ -64,8 +64,19 @@ fi # SANS cp san.conf $BOOTSTRAP_SAN +SANS=$FQDN +if [ "$FQDN" -ne "$HOSTNAME" ]; then + SANS="$SANS $HOSTNAME" +fi + +for ROOT in $(cat san_root.aaf); do + SANS="$SANS $ROOT" + for C in service locate oauth gui cm hello; do + SANS="$SANS $C.$ROOT" + done +done NUM=1 -for D in $FQDN aaf.osaaf.org service.aaf.osaaf.org locate.aaf.osaaf.org oauth.aaf.osaaf.org gui.aaf.osaaf.org cm.aaf.osaaf.org hello.aaf.osaaf.org; do +for D in $SANS; do echo "DNS.$NUM = $D" >> $BOOTSTRAP_SAN NUM=$((NUM+1)) done diff --git a/conf/CA/san_root.aaf b/conf/CA/san_root.aaf new file mode 100644 index 00000000..ec275a35 --- /dev/null +++ b/conf/CA/san_root.aaf @@ -0,0 +1 @@ +aaf.osaaf.org aaf.api.simpledemo.onap.org |