vmware / dscr-for-vmware

The Repository contains Microsoft PowerShell Desired State Configuration (DSC) Resources for managing VC and ESXi settings.
Other
140 stars 41 forks source link

ExportVMHostConfiguration - DependsOn quoting error #257

Closed lucdekens closed 4 years ago

lucdekens commented 4 years ago

When a VSS depends on a number of pNIC, the generated code looks like

DependsOn = '[VMHostPhysicalNic]VMHostPhysicalNic_vmnic1, [VMHostPhysicalNic]VMHostPhysicalNic_vmnic0'

while that should be

DependsOn = '[VMHostPhysicalNic]VMHostPhysicalNic_vmnic1', '[VMHostPhysicalNic]VMHostPhysicalNic_vmnic0'

This causes an error when running the config.

image

SimeonGerginov commented 4 years ago

Good catch! I will start working on fixing it.

SimeonGerginov commented 4 years ago

The bug was fixed in PR #260.