removing error message when checking for windows vm

This commit is contained in:
Paul Edwards 2019-11-14 10:26:20 +00:00
Родитель a330dfff80
Коммит 056018a383
1 изменённых файлов: 4 добавлений и 4 удалений

Просмотреть файл

@ -4,7 +4,7 @@ source "$azhpc_dir/libexec/common.sh"
config_file="config.json"
DEBUG_ON=0
DEBUG_ON=1
COLOR_ON=1
function usage() {
@ -104,10 +104,10 @@ fi
status "logging in to $target (via $fqdn)"
vm_os=$(az vm show \
--resource-group $resource_group \
--name $resource_name \
--resource-group $resource_group \
--name $resource_name \
--query storageProfile.osDisk.osType \
--output tsv)
--output tsv 2>/dev/null)
if [ "$vm_os" == "Windows" ]; then
winfqdn=$(az network public-ip show \