# File lib/rudy/metadata/machine.rb, line 57 57: def initialize(position='01', opts={}) 58: 59: opts = { 60: :size => current_machine_size, 61: :os => current_machine_os, 62: :ami => current_machine_image, 63: :group => current_group_name, 64: :keypair => root_keypairname 65: }.merge opts 66: 67: opts[:address] = current_machine_address opts[:position] || position 68: 69: super Rudy::Machines::RTYPE, opts # Rudy::Metadata#initialize 70: 71: @position = position 72: 73: # Defaults: 74: @created = Time.now.utc 75: @available = false 76: postprocess 77: 78: end