From 1ece44ca84f682ee734fb79ebd0d8526b6a3ef6d Mon Sep 17 00:00:00 2001 From: Chris Roberts Date: Fri, 2 Nov 2018 10:42:28 -0700 Subject: [PATCH] Remove module loading from vlan script --- plugins/providers/hyperv/scripts/set_network_vlan.ps1 | 6 ------ 1 file changed, 6 deletions(-) diff --git a/plugins/providers/hyperv/scripts/set_network_vlan.ps1 b/plugins/providers/hyperv/scripts/set_network_vlan.ps1 index e61360c44..025ba8d57 100644 --- a/plugins/providers/hyperv/scripts/set_network_vlan.ps1 +++ b/plugins/providers/hyperv/scripts/set_network_vlan.ps1 @@ -7,12 +7,6 @@ param ( [int]$VlanId ) -# Include the following modules -$presentDir = Split-Path -parent $PSCommandPath -$modules = @() -$modules += $presentDir + "\utils\write_messages.ps1" -forEach ($module in $modules) { . $module } - try { $vm = Hyper-V\Get-VM -Id $VmId -ErrorAction "stop" Hyper-V\Set-VMNetworkAdapterVlan $vm -Access -Vlanid $VlanId