vagrant-pe_build 0.13.5 → 0.13.6

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 82a0a87cd4f19cd2c7c0996203d47b8728a05e3e
4
- data.tar.gz: cbf3b93f342c26e5938a62aa70e9046ecd421e9f
3
+ metadata.gz: a6fc28316cbfcac51c9f960d08a07790df7cfaed
4
+ data.tar.gz: 96255f6f6350fabc1263b994542b53e90792b5dc
5
5
  SHA512:
6
- metadata.gz: 8f61e24966a21c5662b9431ade9bfed6bc79b98ed6c2206fe158527b52dc7dcd0edf24c34e0bfa7e58b68b529c18213d5e16027ca43a253fc3fc38431701ff62
7
- data.tar.gz: 3d20da4e5a0258566b84862f361d80d46cd6e3558cee10a20827856752e005705195670859bcdb4f58ac365e06e2c8b0f72d557b459fbebba1c3146285a36745
6
+ metadata.gz: fa4ebc9fa44a337d04cdfeebaf1e6fd824cff1bb72a9298acab3ffaaf77a5d9f1a93040df89c2744ab071515f50cb011b59f1208fc9f5d5dd7b319da9c552311
7
+ data.tar.gz: f6c6c756e2cdc6469b34eec2218238928d18d7a3a687e47c84a7e36c9260d459ebef57ceb9f21ff54a6701118cd242046f5ed135d08a84cf678d6ab81e88a6d7
data/CHANGELOG CHANGED
@@ -1,6 +1,20 @@
1
1
  vagrant-pe_build
2
2
  ================
3
3
 
4
+ 0.13.6
5
+ ------
6
+
7
+ 2015-12-17
8
+
9
+ This is a backwards compatible bugfix release.
10
+
11
+ * (GH-60) Fix PE tarball downloads on windows.
12
+
13
+ * (GH-109) Fix pe_bootstrap agent installations for 2015.3.x. Note that this
14
+ functionality isn't technically supposed to work in 2015.x and may break
15
+ with upcoming releases. The pe_agent provisioner is the recommended method
16
+ for installing 2015.x agents.
17
+
4
18
  0.13.5
5
19
  ------
6
20
 
@@ -19,6 +19,9 @@ module PEBuild::Transfer::OpenURI
19
19
  def self.copy(uri, dst)
20
20
  idempotent(dst) do
21
21
  tmpfile = download_file(uri)
22
+ # Ensure the file is closed after the download. On Windows, leaving the
23
+ # file open will prevent it from being moved.
24
+ tmpfile.close()
22
25
  FileUtils.mv(tmpfile, dst)
23
26
  end
24
27
  rescue StandardError => e
@@ -1,3 +1,3 @@
1
1
  module PEBuild
2
- VERSION = '0.13.5'
2
+ VERSION = '0.13.6'
3
3
  end
@@ -15,5 +15,8 @@ q_puppet_enterpriseconsole_install=n
15
15
  q_puppetagent_install=y
16
16
  q_puppetagent_certname=<%= machine_hostname %>
17
17
  q_puppetagent_server=<%= @config.master %>
18
+ q_puppetdb_hostname=<%= @config.master %>
19
+ q_database_host=<%= @config.master %>
20
+ q_database_port=5432
18
21
  q_skip_master_verification=n
19
22
  q_fail_on_unsuccessful_master_lookup=y
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: vagrant-pe_build
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.13.5
4
+ version: 0.13.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Adrien Thebo
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2015-12-08 00:00:00.000000000 Z
12
+ date: 2015-12-17 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: progressbar