Always assume machine entry is valid on the ruby side

This commit is contained in:
sophia 2022-03-04 14:36:35 -06:00 committed by Paul Hinze
parent f55da8168a
commit 29d5b3627d
No known key found for this signature in database
GPG Key ID: B69DEDF2D55501C0

View File

@ -14,7 +14,7 @@ module Vagrant
vagrantfile_path: machine.project.vagrantfile_path,
machine: machine
})
self.new(machine.get_uuid, raw)
self.new(machine.id, raw)
end
end
@ -60,6 +60,11 @@ module Vagrant
}.merge(opts))
end
end
def valid?(home_path)
# Always return true
true
end
end
end
end