vagrant/plugins/pushes/noop/plugin.rb

26 lines
480 B
Ruby
Raw Normal View History

# Copyright (c) HashiCorp, Inc.
# SPDX-License-Identifier: BUSL-1.1
require "vagrant"
module VagrantPlugins
2014-10-22 22:29:23 -04:00
module NoopDeploy
class Plugin < Vagrant.plugin("2")
2014-10-22 22:29:23 -04:00
name "noop"
description <<-DESC
2014-10-22 22:29:23 -04:00
Literally do nothing
DESC
2014-10-22 22:29:23 -04:00
config(:noop, :push) do
require File.expand_path("../config", __FILE__)
Config
end
2014-10-22 22:29:23 -04:00
push(:noop) do
require File.expand_path("../push", __FILE__)
Push
end
end
end
end