From 225e6eadb7f1498f72d9aeda7c75fc8d5a58ddb6 Mon Sep 17 00:00:00 2001 From: Ola Thoresen Date: Wed, 7 Jun 2023 09:36:49 +0200 Subject: [PATCH] Fix shellcheck --- deploy/nutanix.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deploy/nutanix.sh b/deploy/nutanix.sh index ee1f50b5..463a8aee 100644 --- a/deploy/nutanix.sh +++ b/deploy/nutanix.sh @@ -50,7 +50,7 @@ nutanix_deploy() { _nutanix_pass="$NUTANIX_PASS" _nutanix_host="$NUTANIX_HOST" fi - curl --silent --fail --user "$_nutanix_user:$_nutanix_pass" -F caChain=@$_cca -F cert=@$_ccert -F key=@$_ckey -F keyType=RSA_2048 -k https://$_nutanix_host:9440/PrismGateway/services/rest/v1/keys/pem/import >/dev/null + curl --silent --fail --user "$_nutanix_user:$_nutanix_pass" -F caChain=@"$_cca" -F cert=@"$_ccert" -F key=@"$_ckey" -F keyType=RSA_2048 -k https://"$_nutanix_host":9440/PrismGateway/services/rest/v1/keys/pem/import >/dev/null return $? }