veewee 0.4.5.pre1 → 0.4.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +8 -8
- data/lib/veewee/provider/core/box/wincp.rb +10 -9
- data/lib/veewee/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
---
|
|
2
2
|
!binary "U0hBMQ==":
|
|
3
3
|
metadata.gz: !binary |-
|
|
4
|
-
|
|
4
|
+
NTk1NWY3MjZjOGUzMmNjY2FlMDRjOTI3MjllYmYyODQwODY2ZjI4YQ==
|
|
5
5
|
data.tar.gz: !binary |-
|
|
6
|
-
|
|
6
|
+
OTA4Nzg0YjAxZDE1YjI1MjQxNjMzYmU4ZDBhZDI3MTc1YjIxOTM2NQ==
|
|
7
7
|
SHA512:
|
|
8
8
|
metadata.gz: !binary |-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
9
|
+
M2I2MTdmMTY3ZmU4NzJhNDQzOGY4MzQzZDM0MjU4ZDhiZDRhOGU2NjVhMmQ1
|
|
10
|
+
NzQ2ZDBiMzE2OWMzMGE1NjAzNzIzN2QwY2VmZjI3NDQwMjVjNWFmY2RjNzhj
|
|
11
|
+
YTE4N2QxOGRmZDk2MjgxYzE4NzliYjg3MWI1MWYxNTkzMzY2ODU=
|
|
12
12
|
data.tar.gz: !binary |-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
13
|
+
NDk0YjAxMjkxZGVkYjhjMTU1ZDcxMzIzNDNiNmY0ZjdlMjFiODM0YWZkMjkz
|
|
14
|
+
ODAwZmY0OTUxNDFkMjhlYjExNWNhZGU5YWZhNjg1ZTA3ZTViMmRlNDMzOTUy
|
|
15
|
+
MTI4YWFmN2ViNTdiZjQ3ZGYwZDI5NTk0NGQ5Y2VhNTQ0YjA2NzI=
|
|
@@ -26,18 +26,19 @@ module Veewee
|
|
|
26
26
|
|
|
27
27
|
urlpath = localfile.to_slug
|
|
28
28
|
urlpath = urlpath.start_with?('/') ? urlpath : '/' + urlpath
|
|
29
|
-
env.ui.warn "Spinning up an allow_for_http_request on http://#{host_ip_as_seen_by_guest}:#{definition.kickstart_port}#{localfile} at URL #{urlpath}"
|
|
30
|
-
allow_for_http_request(
|
|
31
|
-
localfile,
|
|
32
|
-
urlpath,
|
|
33
|
-
{
|
|
34
|
-
:port => definition.kickstart_port,
|
|
35
|
-
:timeout => definition.kickstart_timeout,
|
|
36
|
-
}
|
|
37
|
-
)
|
|
38
29
|
|
|
39
30
|
begin
|
|
40
31
|
self.when_winrm_login_works(self.ip_address,winrm_options.merge(options)) do
|
|
32
|
+
env.ui.warn "Spinning up an allow_for_http_request on http://#{host_ip_as_seen_by_guest}:#{definition.kickstart_port}#{localfile} at URL #{urlpath}"
|
|
33
|
+
allow_for_http_request(
|
|
34
|
+
localfile,
|
|
35
|
+
urlpath,
|
|
36
|
+
{
|
|
37
|
+
:port => definition.kickstart_port,
|
|
38
|
+
:timeout => 300,
|
|
39
|
+
}
|
|
40
|
+
)
|
|
41
|
+
|
|
41
42
|
env.ui.info "Going to try and copy #{localfile} to #{remotefile.inspect}"
|
|
42
43
|
self.exec("cmd.exe /C cscript %TEMP%\\wget.vbs /url:http://#{host_ip_as_seen_by_guest}:#{definition.kickstart_port}#{urlpath} /path:#{remotefile}")
|
|
43
44
|
# while true do
|
data/lib/veewee/version.rb
CHANGED