Sha256: d8e21cc243f95ccc90da53cb39c076115c43cfecd4d211659909e709bb66cdea

Contents?: true

Size: 482 Bytes

Versions: 2

Compression:

Stored size: 482 Bytes

Contents

module Vagrant

    module KillServerWarning

        class Plugin < Vagrant.plugin('2')
          name "KillServerWarning"

          description <<-DESC
          Use this to disable the "Vagrant has detected a custom Vagrant server in use for downloading box files" warning
          DESC

         action_hook(:kill_server_warning) do |hook|
             hook.before(Vagrant::Action::Builtin::BoxAdd, Vagrant::KillServerWarning::Middleware)
         end
        end
    end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
vagrant-kill-server-warning-0.2 lib/vagrant-kill-server-warning/plugin.rb
vagrant-kill-server-warning-0.1 lib/vagrant-kill-server-warning/plugin.rb