From 3399f07f00ba3dbdead5d68d47968cac63374f00 Mon Sep 17 00:00:00 2001 From: hms Date: Sat, 6 Feb 2021 11:07:26 -0800 Subject: [PATCH] fix for function calls --- refresh-NebulaCA | 39 +++++++++++++++++++-------------------- 1 file changed, 19 insertions(+), 20 deletions(-) diff --git a/refresh-NebulaCA b/refresh-NebulaCA index 3f5acaf..b306d20 100644 --- a/refresh-NebulaCA +++ b/refresh-NebulaCA @@ -7,6 +7,25 @@ # Created By: HMSheets ###################################################### +invalid_args_msg () { + echo "Invalid Parameter(s) Entered: $1" + exit +} + +help_msg () { + echo "Usage of refresh-NebulaCA : refresh an existing nebula ca" + echo " -n|--caname" + echo " Name to use for the new CA. Used in the CA cert file and in the filename" + echo " -r|--rootpath" + echo " Root path of existing CA" + echo " -f|--cafilename" + echo " Filename of the existing CA" + echo " -i|--issuer" + echo " Name of the Org Issuing and authorizing the creation of the new Nebula CA" + echo " -h|--help" + echo " This help text, but you already knew that... right?!?!" + exit +} POSITIONAL=() while [[ $# -gt 0 ]] @@ -49,26 +68,6 @@ esac done set -- "${POSITIONAL[@]}" # restore positional parameters -invalid_args_msg () { - echo "Invalid Parameter(s) Entered: $1" - exit -} - -help_msg () { - echo "Usage of refresh-NebulaCA : refresh an existing nebula ca" - echo " -n|--caname" - echo " Name to use for the new CA. Used in the CA cert file and in the filename" - echo " -r|--rootpath" - echo " Root path of existing CA" - echo " -f|--cafilename" - echo " Filename of the existing CA" - echo " -i|--issuer" - echo " Name of the Org Issuing and authorizing the creation of the new Nebula CA" - echo " -h|--help" - echo " This help text, but you already knew that... right?!?!" - exit -} - DATETIME=$(date '+%Y%m%d-%H%M%S') #CANAME=$(${ROOTPATH}/nebula-cert print -path ${ROOTPATH}/${NODECERTNAME} -json | jq -s .[].details.name | sed 's/["]//g')