17 lines
277 B
Ruby
17 lines
277 B
Ruby
|
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
|