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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: a14f9fca3805e739d5c362f079fd8f5b9327522d
4
- data.tar.gz: 7a89f9d2561215e7364e231d5b3cffbcdfda46c7
3
+ metadata.gz: 5e27655716615d6252319daefc518687147f7643
4
+ data.tar.gz: b68a2d806efa44df9c62181792680611b8cccfe7
5
5
  SHA512:
6
- metadata.gz: b056f870e2a6ccc775ae18b53fd83a5ab11e56ad05867ff7dddc043ff0bbdb8b31ee51ed11625a1142b118d30208a460447a94968885c5c2dc5e4f189aa5deeb
7
- data.tar.gz: aa265e9075bcc4a7278b01c57542ee8f385b0afb342e2be8da30c8354fb55ffd123f37c0fa66544f22be2b4001f9f6688bcbf9ebfe83de395e39e946a39f37fd
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'
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 = File.join('\\\\VBOXSVR\\vagrant', PEBuild::WORK_DIR)
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
@@ -1,3 +1,3 @@
1
1
  module PEBuild
2
- VERSION = '0.9.5'
2
+ VERSION = '0.9.6'
3
3
  end
@@ -1,5 +1,5 @@
1
1
  q_all_in_one_install=y
2
- q_database_host=localhost
2
+ q_database_host=<%= machine_hostname %>
3
3
  q_database_install=y
4
4
  q_database_port=5432
5
5
  q_database_root_password=wcAdzLoHz6Vpzp6TJPLT
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.5
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-09-09 00:00:00.000000000 Z
11
+ date: 2014-10-17 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: progressbar