vagrant-pe_build 0.8.0 → 0.8.1

Sign up to get free protection for your applications and to get access to all the features.
data/CHANGELOG CHANGED
@@ -1,6 +1,16 @@
1
1
  vagrant-pe_build
2
2
  ================
3
3
 
4
+ 0.8.1
5
+ -----
6
+
7
+ 2013-12-05
8
+
9
+ This is a backwards compatible bugfix release.
10
+
11
+ * (vagrant-pe_build-#43) Better path interpolation when fetching arguments
12
+ * (maint) Fix for a silly variable error inside of pe-build copy
13
+
4
14
  0.8.0
5
15
  -----
6
16
 
@@ -59,7 +59,7 @@ module PEBuild
59
59
  raise PEBuild::ArchiveNoInstallerSource, :filename => versioned_path(@filename)
60
60
  end
61
61
 
62
- uri = URI.parse(versioned_path(str + '/' + @filename))
62
+ uri = URI.parse(versioned_path("#{str}/#{@filename}"))
63
63
  dst = File.join(@archive_dir, versioned_path(@filename))
64
64
 
65
65
  transfer = PEBuild::Transfer.generate(uri, dst)
@@ -30,7 +30,7 @@ class PEBuild::Command::Copy < Vagrant.plugin(2, :command)
30
30
  o.separator ''
31
31
 
32
32
  o.on('-v', '--version=val', String, "The version of PE to fetch") do |val|
33
- options[:version] = val
33
+ @options[:version] = val
34
34
  end
35
35
  end
36
36
  end
@@ -0,0 +1,31 @@
1
+ require 'pe_build/release'
2
+
3
+ module PEBuild::Release
4
+
5
+ one_oh_x = newrelease do
6
+ add_release :debian, 5
7
+ add_release :debian, 6
8
+
9
+ add_release :el, 4
10
+ add_release :el, 5
11
+ add_release :el, 6
12
+
13
+ add_release :sles, 11
14
+
15
+ add_release :solaris, 10
16
+
17
+ add_release :ubuntu, '10.04'
18
+
19
+ set_answer_file :master, File.join(PEBuild.template_dir, 'answers', 'master-1.x.txt.erb')
20
+ set_answer_file :agent, File.join(PEBuild.template_dir, 'answers', 'agent-1.x.txt.erb')
21
+ end
22
+
23
+ @releases['1.2.7'] = one_oh_x
24
+ @releases['1.2.6'] = one_oh_x
25
+ @releases['1.2.5'] = one_oh_x
26
+ @releases['1.2.4'] = one_oh_x
27
+ @releases['1.2.3'] = one_oh_x
28
+ @releases['1.2.2'] = one_oh_x
29
+ @releases['1.2.1'] = one_oh_x
30
+ @releases['1.2.0'] = one_oh_x
31
+ end
@@ -1,3 +1,3 @@
1
1
  module PEBuild
2
- VERSION = '0.8.0'
2
+ VERSION = '0.8.1'
3
3
  end
@@ -0,0 +1,10 @@
1
+ q_puppet_symlinks_install=y
2
+ q_puppetagent_certname=<%= machine_hostname %>
3
+ q_puppetagent_install=y
4
+ q_puppetagent_pluginsync=y
5
+ q_puppetagent_server=<%= @config.master %>
6
+ q_puppetdashboard_install=n
7
+ q_puppetmaster_install=n
8
+ q_rubydevelopment_install=n
9
+ q_vendor_packages_install=n
10
+ q_install=y
@@ -0,0 +1,26 @@
1
+ q_puppet_symlinks_install=y
2
+ q_puppetagent_certname=<%= machine_hostname %>
3
+ q_puppetagent_install=y
4
+ q_puppetagent_pluginsync=y
5
+ q_puppetagent_server=<%= machine_hostname %>
6
+ q_puppetdashboard_database_install=y
7
+ q_puppetdashboard_database_name=dashboard
8
+ q_puppetdashboard_database_password=test
9
+ q_puppetdashboard_database_root_password=test
10
+ q_puppetdashboard_database_user=dashboard
11
+ q_puppetdashboard_httpd_port=3000
12
+ q_puppetdashboard_install=y
13
+ q_puppetdashboard_inventory_hostname=<%= machine_hostname %>
14
+ q_puppetdashboard_inventory_port=8140
15
+ q_puppetdashboard_master_hostname=<%= machine_hostname %>
16
+ q_puppetmaster_certdnsnames=<%= machine_hostname %>:puppet
17
+ q_puppetmaster_certname=<%= machine_hostname %>
18
+ q_puppetmaster_dashboard_hostname=localhost
19
+ q_puppetmaster_dashboard_port=3000
20
+ q_puppetmaster_forward_facts=n
21
+ q_puppetmaster_install=y
22
+ q_puppetmaster_use_dashboard_classifier=y
23
+ q_puppetmaster_use_dashboard_reports=y
24
+ q_rubydevelopment_install=y
25
+ q_vendor_packages_install=y
26
+ q_install=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.8.0
4
+ version: 0.8.1
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2013-10-15 00:00:00.000000000 Z
12
+ date: 2013-12-06 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: progressbar
@@ -95,6 +95,7 @@ files:
95
95
  - lib/pe_build/provisioner/pe_bootstrap/answers_file.rb
96
96
  - lib/pe_build/provisioner/pe_bootstrap/post_install.rb
97
97
  - lib/pe_build/release.rb
98
+ - lib/pe_build/release/1_7.rb
98
99
  - lib/pe_build/release/2_0.rb
99
100
  - lib/pe_build/release/2_5.rb
100
101
  - lib/pe_build/release/2_6.rb
@@ -113,8 +114,10 @@ files:
113
114
  - lib/pe_build/util/config.rb
114
115
  - lib/pe_build/version.rb
115
116
  - lib/vagrant-pe_build.rb
117
+ - templates/answers/agent-1.x.txt.erb
116
118
  - templates/answers/agent-2.x.txt.erb
117
119
  - templates/answers/agent-3.x.txt.erb
120
+ - templates/answers/master-1.x.txt.erb
118
121
  - templates/answers/master-2.x.txt.erb
119
122
  - templates/answers/master-3.x.txt.erb
120
123
  - templates/locales/en.yml
@@ -145,4 +148,3 @@ signing_key:
145
148
  specification_version: 3
146
149
  summary: Vagrant provisioner for installing Puppet Enterprise
147
150
  test_files: []
148
- has_rdoc: