Sha256: 9c2f46d24cdaf50b1804dac40d8368de37579f264debc503a39a1daa5cf2088f

Contents?: true

Size: 558 Bytes

Versions: 1

Compression:

Stored size: 558 Bytes

Contents

#!/usr/bin/env ruby

$LOAD_PATH.unshift(File.join(File.dirname(__FILE__), '..', 'lib'))
require 'cli_helper'

options = {}
OptionParser.new do |opts|
  opts.banner = "Usage: #{File.basename($0)} machine.id [options]"
  opts.on('-n', '--name NAME', 'snapshot name.') {|v| options[:name] = v }
  opts.on_tail('-h','--help') do
    puts opts
    exit
  end

  begin
    opts.parse!(ARGV)
  rescue => e
    puts e.to_s << "\n" << opts.to_s
    exit
  end
end

begin
  puts client.machines(ARGV[0]).snapshots(options[:name]).read 
rescue => e
  puts e.inspect
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
smartdc-0.4.0 bin/sdc-getmachinesnapshot