mirror of
https://github.com/hashicorp/vagrant.git
synced 2026-06-09 08:42:18 -04:00
Get a machine instance for action up
This commit is contained in:
parent
7438d2d7e7
commit
fdcae6e13a
1 changed files with 11 additions and 7 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in a new issue