Update nodemgmt-scripts.sh

This commit is contained in:
2019-07-25 23:46:16 -05:00
parent 22b8c89e7a
commit 2fbf52c3b9

View File

@@ -826,11 +826,11 @@ DELSITES(){
else
while :
do
echo -e -n "${idsCL[LightRed]}Are you sure you want to delete '${SITES[${selsite}]^^}'? [y/N]${idsCL[Default]} "
echo -e -n "${idsCL[LightRed]}Are you sure you want to delete '${idsCL[Magenta]}${SITES[${selsite}]^^}${idsCL[LightRed]}'? [y/N]${idsCL[Default]} "
read response
echo ""
if [[ $response =~ ^[Yy]$ ]]; then
echo -e -n "${idsCL[LightRed]}Do you also want to delete the certs for '${idsCL[Magenta]}${SITES[${selsite}]}${idsCL[LightRed]}', if they exist? [y/N]${idsCL[Default]} "
echo -e -n "${idsCL[LightRed]}Do you also want to delete the certs for '${SITES[${selsite}]}', if they exist? [y/N]${idsCL[Default]} "
read sslresponse
DELSITE -site ${SITES[${selsite}]} -ssl ${sslresponse}
echo ""