vagrant-pe_build 0.9.5 → 0.9.6
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 +4 -4
- data/CHANGELOG +13 -0
- data/Gemfile +1 -1
- data/lib/pe_build/cap/run_install/windows.rb +2 -1
- data/lib/pe_build/version.rb +1 -1
- data/templates/answers/master-3.x.txt.erb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 5e27655716615d6252319daefc518687147f7643
|
|
4
|
+
data.tar.gz: b68a2d806efa44df9c62181792680611b8cccfe7
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: cd24802e08a6a556f1d0e43194e0de9f0e3db836bd3a4835e1e4e64875b08756d83c7c17d3db9ed536460c558acc4d42b1a1345cf3df38badd96c99f6d8ab9c3
|
|
7
|
+
data.tar.gz: 983ee818ee632b974b53bf2cac87bee85f472cdf393203bd5eb922bd8565c292753635e135f587cce2eee039ae5bd015f05983740ce8da71777034f7f034a05a
|
data/CHANGELOG
CHANGED
|
@@ -1,6 +1,19 @@
|
|
|
1
1
|
vagrant-pe_build
|
|
2
2
|
================
|
|
3
3
|
|
|
4
|
+
0.9.6
|
|
5
|
+
-----
|
|
6
|
+
|
|
7
|
+
2014-10-17
|
|
8
|
+
|
|
9
|
+
This is a backwards compatible patch release.
|
|
10
|
+
|
|
11
|
+
* (GH-74) Change the q_database_host answer on 3.x masters to the hostname of
|
|
12
|
+
the box instead of localhost.
|
|
13
|
+
|
|
14
|
+
* (GH-75) Generalize Windows installation so that it no longer searches for
|
|
15
|
+
the installer in Virtualbox specific mount points.
|
|
16
|
+
|
|
4
17
|
0.9.5
|
|
5
18
|
-----
|
|
6
19
|
|
data/Gemfile
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
source 'https://rubygems.org'
|
|
2
2
|
ruby '2.0.0' # Required by Vagrant 1.4 and newer.
|
|
3
3
|
|
|
4
|
-
ENV['TEST_VAGRANT_VERSION'] ||= 'v1.6.
|
|
4
|
+
ENV['TEST_VAGRANT_VERSION'] ||= 'v1.6.5'
|
|
5
5
|
|
|
6
6
|
# Wrapping gemspec in the :plugins group causes Vagrant 1.5 and newer to
|
|
7
7
|
# automagically load this plugin during acceptance tests.
|
|
@@ -15,7 +15,8 @@ class PEBuild::Cap::RunInstall::Windows
|
|
|
15
15
|
return
|
|
16
16
|
end
|
|
17
17
|
|
|
18
|
-
root =
|
|
18
|
+
root = machine.communicate.shell.cmd('ECHO %SYSTEMDRIVE%')[:data][0][:stdout].chomp
|
|
19
|
+
root = File.join("#{root}\\vagrant", PEBuild::WORK_DIR)
|
|
19
20
|
|
|
20
21
|
# The installer will be fed to msiexec. That means the File.join() method
|
|
21
22
|
# is of limited use since it won't execute on the Windows system
|
data/lib/pe_build/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: vagrant-pe_build
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.9.
|
|
4
|
+
version: 0.9.6
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Adrien Thebo
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2014-
|
|
11
|
+
date: 2014-10-17 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: progressbar
|