18 lines
372 B
Ruby
18 lines
372 B
Ruby
|
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
|
||
|
require File.expand_path("../command", __FILE__)
|
||
|
Command
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
end
|