fix winrm connectivity issue (#92)
This commit is contained in:
parent
21cbec414a
commit
9ea58800b6
|
@ -122,13 +122,14 @@
|
|||
revision = "4572e39b1ab9fe03ee513ce6fc7e289e98482190"
|
||||
|
||||
[[projects]]
|
||||
branch = "master"
|
||||
branch = "non-strict"
|
||||
name = "github.com/masterzen/winrm"
|
||||
packages = [
|
||||
".",
|
||||
"soap"
|
||||
]
|
||||
revision = "7e40f93ae939004a1ef3bd5ff5c88c756ee762bb"
|
||||
revision = "d179cf2678135ef005309663bceee2058384917c"
|
||||
source = "github.com/mkuzmin/winrm"
|
||||
|
||||
[[projects]]
|
||||
branch = "master"
|
||||
|
@ -269,6 +270,6 @@
|
|||
[solve-meta]
|
||||
analyzer-name = "dep"
|
||||
analyzer-version = 1
|
||||
inputs-digest = "20177d3d587549d23b3ddea4eefc1fc03aa3436c372843bc76f98052b25432b7"
|
||||
inputs-digest = "e6e9304a6bd19a02a4b36af24d1e3195e19d459012ecb863bc685a90aab9f2ed"
|
||||
solver-name = "gps-cdcl"
|
||||
solver-version = 1
|
||||
|
|
13
Gopkg.toml
13
Gopkg.toml
|
@ -2,14 +2,19 @@
|
|||
name = "github.com/hashicorp/packer"
|
||||
version = "=1.2.2"
|
||||
|
||||
[[override]]
|
||||
name = "github.com/masterzen/azure-sdk-for-go"
|
||||
branch = "master"
|
||||
|
||||
[[constraint]]
|
||||
name = "github.com/vmware/govmomi"
|
||||
version = "=0.15.0"
|
||||
|
||||
[[override]]
|
||||
name = "github.com/masterzen/winrm"
|
||||
source = "github.com/mkuzmin/winrm"
|
||||
branch = "non-strict"
|
||||
|
||||
[[override]]
|
||||
name = "github.com/masterzen/azure-sdk-for-go"
|
||||
branch = "master"
|
||||
|
||||
[prune]
|
||||
go-tests = true
|
||||
unused-packages = true
|
||||
|
|
|
@ -1,2 +1,2 @@
|
|||
rem Silent mode, basic UI, no reboot
|
||||
@rem Silent mode, basic UI, no reboot
|
||||
e:\setup64 /s /v "/qb REBOOT=R"
|
||||
|
|
|
@ -33,7 +33,7 @@
|
|||
],
|
||||
|
||||
"floppy_files": [
|
||||
"setup/"
|
||||
"{{template_dir}}/setup/"
|
||||
],
|
||||
"floppy_img_path": "[datastore1] ISO/VMware Tools/10.2.0/pvscsi-Windows8.flp",
|
||||
"boot_order": "disk,cdrom"
|
||||
|
|
Loading…
Reference in New Issue