module VagrantPlugins module ProfitBricks module Command class ListImages < Vagrant.plugin("2", :command) def execute options = {} opts = OptionParser.new do |o| o.banner = "Usage: vagrant profitbricks images list [options]" end argv = parse_options(opts) return if !argv with_target_vms(argv, :provider => :profitbricks) do |machine| machine.action('list_images') end end end end end end