mirror of
https://github.com/hashicorp/vagrant.git
synced 2026-05-28 04:36:05 -04:00
16 lines
288 B
Ruby
16 lines
288 B
Ruby
# Copyright (c) HashiCorp, Inc.
|
|
# SPDX-License-Identifier: BUSL-1.1
|
|
|
|
module VagrantPlugins
|
|
module ContainerProvisioner
|
|
class Installer
|
|
def initialize(machine)
|
|
@machine = machine
|
|
end
|
|
|
|
def ensure_installed
|
|
# nothing to do
|
|
end
|
|
end
|
|
end
|
|
end
|