Sha256: 61d14e7871598a630cd16ffa7e7f0ece7b5be0510f05c8e062920e41879b35cb
Contents?: true
Size: 510 Bytes
Versions: 4
Compression:
Stored size: 510 Bytes
Contents
module VagrantPlugins module Rackspace module Command class Flavors < Vagrant.plugin("2", :command) def execute options = {} opts = OptionParser.new do |o| o.banner = "Usage: vagrant rackspace flavors [options]" end argv = parse_options(opts) return if !argv with_target_vms(argv, :provider => :rackspace) do |machine| machine.action('list_flavors') end end end end end end
Version data entries
4 entries across 4 versions & 1 rubygems