From 1653d5da737a2bd8ad6ddedf36626f18a1d497c1 Mon Sep 17 00:00:00 2001 From: Scott Nowicki Date: Wed, 19 Apr 2017 19:52:02 -0500 Subject: [PATCH] incorrect variable reference --- examples/azure-vm-simple-linux/deploy.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/azure-vm-simple-linux/deploy.sh b/examples/azure-vm-simple-linux/deploy.sh index 22a5909b63..d358639dce 100755 --- a/examples/azure-vm-simple-linux/deploy.sh +++ b/examples/azure-vm-simple-linux/deploy.sh @@ -4,7 +4,7 @@ set -o errexit -o nounset # generate a unique string for CI deployment KEY=$(cat /dev/urandom | tr -cd 'a-z' | head -c 12) -PASSWORD=KEY +PASSWORD=$KEY PASSWORD+=$(cat /dev/urandom | tr -cd 'A-Z' | head -c 2) PASSWORD+=$(cat /dev/urandom | tr -cd '0-9' | head -c 2)