mirror of
https://github.com/hashicorp/vagrant.git
synced 2026-02-20 00:10:45 -05:00
19 lines
346 B
Ruby
19 lines
346 B
Ruby
# Copyright (c) HashiCorp, Inc.
|
|
# SPDX-License-Identifier: BUSL-1.1
|
|
|
|
module VagrantPlugins
|
|
module NoopDeploy
|
|
class Config < Vagrant.plugin("2", :config)
|
|
def initialize
|
|
end
|
|
|
|
def finalize!
|
|
end
|
|
|
|
def validate(machine)
|
|
errors = _detected_errors
|
|
{ "Noop push" => errors }
|
|
end
|
|
end
|
|
end
|
|
end
|