From c844c7296e1b8a6c09091414216451daeb327d4a Mon Sep 17 00:00:00 2001 From: Weezer Su Date: Mon, 19 Feb 2018 14:40:45 -0600 Subject: [PATCH] Fix a typo in build.sh change the default value assiagment for container_tech from - to :- in case the the parameter has been declared, but is null. The extra : makes a difference only when parameter has been declared, but is null. Change-Id: I9be9df155c1db5b390f6b664c0f3046efb4a4d1b --- multi-node-aio/build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/multi-node-aio/build.sh b/multi-node-aio/build.sh index a447a558..693d54c1 100755 --- a/multi-node-aio/build.sh +++ b/multi-node-aio/build.sh @@ -49,7 +49,7 @@ ansible-playbook -vv \ -e loadbalancer_vm_server_ram=${LOADBALANCER_VM_SERVER_RAM:-"1024"} \ -e logging_vm_server_ram=${LOGGING_VM_SERVER_RAM:-"1024"} \ -e swift_vm_server_ram=${SWIFT_VM_SERVER_RAM:-"1024"} \ - -e container_tech=${CONTAINER_TECH-"lxc"} \ + -e container_tech=${CONTAINER_TECH:-"lxc"} \ -e ipxe_kernel_url=${IPXE_KERNEL_URL:-"http://boot.ipxe.org/ipxe.lkrn"} \ -e ipxe_path_url=${IPXE_PATH_URL:-""} \ --force-handlers \