2015-10-08 14:35:36 +00:00
|
|
|
require "vagrant"
|
|
|
|
|
|
|
|
module VagrantPlugins
|
|
|
|
module CommandCap
|
|
|
|
class Plugin < Vagrant.plugin("2")
|
|
|
|
name "cap command"
|
|
|
|
description <<-DESC
|
|
|
|
The `cap` command checks and executes arbitrary capabilities.
|
|
|
|
DESC
|
|
|
|
|
|
|
|
command("cap", primary: false) do
|
2015-10-08 14:42:10 +00:00
|
|
|
require_relative "command"
|
2015-10-08 14:35:36 +00:00
|
|
|
Command
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|