Get a machine instance for action up

This commit is contained in:
sophia 2021-01-07 10:30:32 -06:00 committed by Paul Hinze
parent 7438d2d7e7
commit fdcae6e13a
No known key found for this signature in database
GPG Key ID: B69DEDF2D55501C0

View File

@ -41,14 +41,18 @@ module VagrantPlugins
def action_up_spec(req, _unused_call)
LOG.debug("action up spec")
# resultSpec = Hashicorp::Vagrant::FuncSpec.Value.new(
# name: "",
# type: ""
# )
args = [
Hashicorp::Vagrant::Sdk::FuncSpec::Value.new(
type: "hashicorp.vagrant.sdk.Args.Machine",
name: ""
),
]
result = [
nil,
]
Hashicorp::Vagrant::Sdk::FuncSpec.new(
name: "test",
args: [],
result: []
args: args,
result: result
)
end
end