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
This commit is contained in:
Weezer Su 2018-02-19 14:40:45 -06:00 committed by weezer su
parent d16deb8cb2
commit c844c7296e

View File

@ -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 \