Make delete of resource group optional.

This commit is contained in:
Graham Williams 2017-02-17 10:41:58 +08:00
Родитель 298a1efcdd
Коммит 07fd903862
1 изменённых файлов: 2 добавлений и 2 удалений

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

@ -171,14 +171,14 @@ cmd
system(cmd)
```
# Cleanup
# Optional Cleanup
```{r optionally delete resource group}
# Delete the resource group now that we have proved existence. There
# is probably no need to wait. Only delete if it did not pre-exist
# this script. Deletion seems to take 10 minutes or more.
if (! rg_pre_exists)
if (FALSE & ! rg_pre_exists)
azureDeleteResourceGroup(context, RG)
```