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