Remove dummy capability from host plugin

This commit is contained in:
Chris Roberts 2021-10-18 15:09:22 -07:00 committed by Paul Hinze
parent 2b7d726c66
commit 2d7ce1b9d8
No known key found for this signature in database
GPG Key ID: B69DEDF2D55501C0
2 changed files with 0 additions and 17 deletions

View File

@ -1,12 +0,0 @@
module VagrantPlugins
module HostVoid
module Cap
class Dummy
def self.dummy(bag, ui, argument)
ui.info "Dummy host cap in ruby runtime, sent argument: `#{argument}' with bag: #{bag}"
"this is a result value string!"
end
end
end
end
end

View File

@ -25,11 +25,6 @@ module VagrantPlugins
require_relative "cap/nfs"
Cap::NFS
end
host_capability("void", "dummy") do
require_relative "cap/dummy"
Cap::Dummy
end
end
end
end