Mercurial > hg > cc > azure
view master/bin/makeWorker.sh @ 12:be1034183e03
scan WAT files for application/pdf responses
author | Henry S. Thompson <ht@markup.co.uk> |
---|---|
date | Wed, 10 Oct 2018 11:28:21 +0000 |
parents | 580221a17890 |
children | c1c8275bd194 |
line wrap: on
line source
#!/bin/bash # Usage . makeWorker.sh name # Misnamed -- it assumes you've already done # az vm create -n [name] -g cc --image Debian --size Standard_... # Source this to get the worker name set to its IP address name=$1 ip=$(az vm list-ip-addresses -g cc -n $name|egrep -o '"ipAddress": ".*"' | cut -f 2 -d ' ' | tr -d \") export $name=$ip echo $name=$ip setupTemplate.sh $ip