lib/bosh/stemcell/builder_options.rb in bosh-stemcell-1.2652.0 vs lib/bosh/stemcell/builder_options.rb in bosh-stemcell-1.2657.0

- old
+ new

@@ -1,11 +1,9 @@ require 'rbconfig' -require 'bosh_agent/version' +require 'forwardable' require 'bosh/stemcell/archive_filename' -require 'forwardable' - module Bosh::Stemcell class BuilderOptions extend Forwardable def initialize(dependencies = {}) @@ -26,13 +24,11 @@ 'stemcell_version' => stemcell_version, 'stemcell_hypervisor' => infrastructure.hypervisor, 'stemcell_infrastructure' => infrastructure.name, 'stemcell_operating_system' => operating_system.name, 'stemcell_operating_system_version' => operating_system.version, - 'bosh_protocol_version' => Bosh::Agent::BOSH_PROTOCOL, 'ruby_bin' => ruby_bin, 'bosh_release_src_dir' => File.join(source_root, 'release/src/bosh'), - 'bosh_agent_src_dir' => File.join(source_root, 'bosh_agent'), 'go_agent_src_dir' => File.join(source_root, 'go_agent'), 'image_create_disk_size' => image_create_disk_size, 'os_image_tgz' => os_image_tgz_path, }.merge(bosh_micro_options).merge(environment_variables).merge(ovf_options) end