mirror of
https://github.com/jbowdre/vRealize.git
synced 2024-11-22 09:52:19 +00:00
13 lines
No EOL
409 B
JavaScript
13 lines
No EOL
409 B
JavaScript
/* JavaScript: conflict encountered
|
|
Resets the conflict flag and passes control back to the 'generate candidateVmName'
|
|
Inputs: digits (number)
|
|
Outputs: conflict (boolean)
|
|
Exception binding: errMsg (string)
|
|
*/
|
|
if (digits) {
|
|
errMsg = 'User-specified name is not available, aborting...';
|
|
throw(errMsg);
|
|
} else {
|
|
System.log("Conflict encountered, trying a new name...")
|
|
conflict = false
|
|
} |