1

有没有办法禁用“vm globbing”?也就是说,如果我在 Vagrant 文件中定义了两个 vm 和 ,并且我运行:dev,我希望 vagrant 拒绝执行命令,因为我没有指定一个框。:prodvagrant reload

为了清楚起见,我的设置如下:

Vagrant.configure("2") do |config|
  config.berkshelf.enabled = true

  config.vm.define :dev do |dev|
  end

  config.vm.define :prod do |prod|
  end
end
4

1 回答 1

2

您可以在 Vagrantfile 的顶部添加以下内容,VALIDATE_ACTIONS并使用您希望需要 VM 的操作进行更新。vagrant destroy请注意,如果只定义了一个 VM ,这仍将允许该命令(没有指定的 VM)。

# Actions to validate
VALIDATE_ACTIONS = [ 'halt', 'destroy' ]

# Override default actions to check machine list
class ValidateCommand < Vagrant.plugin(2, :command)
  class << self
    attr_accessor :delegate_action
  end

  def initialize argv, env
    super(argv, env)
    @argv = argv
  end

  def execute
    vms = []
    with_target_vms(@argv, :reverse => true) do | machine |
      vms << machine
    end
    if vms.size > 1
      puts 'Please specify a single VM'
      1
    else
      with_target_vms(@argv, :reverse => true) do | machine |
        machine.action(ValidateCommand.delegate_action)
      end
      0
    end
  end
end

# Wrap validate command in plugin and invoke for overridden actions
class ValidatePlugin < Vagrant.plugin(2)
  name "Validate"
  VALIDATE_ACTIONS.each do | action |
    command action do
      ValidateCommand.delegate_action = action
      ValidateCommand
    end
  end
end
于 2013-07-23T16:21:42.663 回答