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 +4 -4
- data/CHANGELOG +14 -0
- data/lib/pe_build/transfer/open_uri.rb +3 -0
- data/lib/pe_build/version.rb +1 -1
- data/templates/answers/agent-2015.x.txt.erb +3 -0
- 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: a6fc28316cbfcac51c9f960d08a07790df7cfaed
|
4
|
+
data.tar.gz: 96255f6f6350fabc1263b994542b53e90792b5dc
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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
|
data/lib/pe_build/version.rb
CHANGED
@@ -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.
|
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-
|
12
|
+
date: 2015-12-17 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: progressbar
|