bento-lpn 1.1.3

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.
@@ -0,0 +1,3 @@
1
+ module Bento
2
+ VERSION = "1.1.3"
3
+ end
@@ -0,0 +1 @@
1
+ echo "Shell Provisioner Says What"
@@ -0,0 +1,29 @@
1
+ ---
2
+ provisioner:
3
+ name: <%= @provisioner %>
4
+
5
+ platforms:
6
+ <% @providers.each do |k,v| -%>
7
+ - name: <%= @boxname + '-' + k %>
8
+ driver:
9
+ name: vagrant
10
+ <% if k =~ /vmware/ -%>
11
+ <% if RUBY_PLATFORM.match(/darwin/) -%>
12
+ provider: <%= 'vmware_fusion' %>
13
+ <% else -%>
14
+ provider: <%= 'vmware_workstation' %>
15
+ <% end -%>
16
+ <% else -%>
17
+ provider: <%= k %>
18
+ <% end -%>
19
+ box: bento-<%= @boxname %>
20
+ box_url: file://<%= Dir.pwd %>/builds/<%= v['file'] %>
21
+ synced_folders:
22
+ <% if k =~ /hyperv/ -%>
23
+ - [".", "/vagrant", "disabled: true"]
24
+ <% else -%>
25
+ - [".", "/vagrant", "disabled: <%= @share_disabled %>"]
26
+ <% end -%>
27
+ <% end -%>
28
+ suites:
29
+ - name: default
metadata ADDED
@@ -0,0 +1,98 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: bento-lpn
3
+ version: !ruby/object:Gem::Version
4
+ version: 1.1.3
5
+ platform: ruby
6
+ authors:
7
+ - Stephan Linz
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2018-09-20 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: mixlib-shellout
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ">="
18
+ - !ruby/object:Gem::Version
19
+ version: 2.3.2
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ">="
25
+ - !ruby/object:Gem::Version
26
+ version: 2.3.2
27
+ - !ruby/object:Gem::Dependency
28
+ name: vagrant_cloud
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '1.0'
34
+ type: :runtime
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '1.0'
41
+ description: bento-lpn (fork of bento-ya) builds bento boxes
42
+ email:
43
+ - linz@li-pro.net
44
+ executables:
45
+ - bento
46
+ extensions: []
47
+ extra_rdoc_files: []
48
+ files:
49
+ - ".gitignore"
50
+ - ".travis.yml"
51
+ - CHANGELOG.md
52
+ - Gemfile
53
+ - LICENSE
54
+ - README.md
55
+ - Rakefile
56
+ - bento-lpn.gemspec
57
+ - bin/bento
58
+ - lib/bento.rb
59
+ - lib/bento/build.rb
60
+ - lib/bento/buildmetadata.rb
61
+ - lib/bento/cli.rb
62
+ - lib/bento/common.rb
63
+ - lib/bento/delete.rb
64
+ - lib/bento/normalize.rb
65
+ - lib/bento/packerexec.rb
66
+ - lib/bento/providermetadata.rb
67
+ - lib/bento/release.rb
68
+ - lib/bento/revoke.rb
69
+ - lib/bento/test.rb
70
+ - lib/bento/upload.rb
71
+ - lib/bento/version.rb
72
+ - templates/bootstrap.sh.erb
73
+ - templates/kitchen.yml.erb
74
+ homepage: https://github.com/rexut/bento-lpn
75
+ licenses:
76
+ - Apache-2.0
77
+ metadata: {}
78
+ post_install_message:
79
+ rdoc_options: []
80
+ require_paths:
81
+ - lib
82
+ required_ruby_version: !ruby/object:Gem::Requirement
83
+ requirements:
84
+ - - ">="
85
+ - !ruby/object:Gem::Version
86
+ version: 2.3.1
87
+ required_rubygems_version: !ruby/object:Gem::Requirement
88
+ requirements:
89
+ - - ">="
90
+ - !ruby/object:Gem::Version
91
+ version: '0'
92
+ requirements: []
93
+ rubyforge_project:
94
+ rubygems_version: 2.7.6
95
+ signing_key:
96
+ specification_version: 4
97
+ summary: A RubyGem for managing chef/bento builds
98
+ test_files: []