Sha256: 7d3611fd68d3193a6d5bcc2d5b54805b3bb08b0c45a25e4fc1d305a8f8be2387

Contents?: true

Size: 1.13 KB

Versions: 26

Compression:

Stored size: 1.13 KB

Contents

#
# Cookbook Name:: virtualbox
# Attributes:: default
#
# Copyright 2011, Joshua Timberman
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#     http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#


default['virtualbox']['url'] = ''
default['virtualbox']['version'] = ''

case node['platform_family']
when 'mac_os_x'
  default['virtualbox']['url'] = 'http://download.virtualbox.org/virtualbox/4.2.8/VirtualBox-4.2.8-83876-OSX.dmg'
when 'windows'
  default['virtualbox']['url'] = 'http://download.virtualbox.org/virtualbox/4.2.8/VirtualBox-4.2.8-83876-Win.exe'
  default['virtualbox']['version'] = Vbox::Helpers.vbox_version(node['virtualbox']['url'])
when 'debian', 'rhel'
  default['virtualbox']['version'] = '4.2'
end

Version data entries

26 entries across 26 versions & 1 rubygems

Version Path
madscience-0.0.6 cookbooks/virtualbox/attributes/default.rb
madscience-0.0.5 cookbooks/virtualbox/attributes/default.rb
madscience-0.0.4 cookbooks/virtualbox/attributes/default.rb
madscience-0.0.3 cookbooks/virtualbox/attributes/default.rb
madscience-0.0.2 cookbooks/virtualbox/attributes/default.rb
madscience-0.0.1 cookbooks/virtualbox/attributes/default.rb