Sha256: e60b8a1d0a1a17e540c1e99b3702162f703f60221672bfb49107cfdb384bd925
Contents?: true
Size: 530 Bytes
Versions: 22
Compression:
Stored size: 530 Bytes
Contents
require "vagrant" module VagrantPlugins module CommandUp class Plugin < Vagrant.plugin("2") name "up command" description <<-DESC The `up` command brings the virtual environment up and running. DESC command("up") do require File.expand_path("../command", __FILE__) Command end action_hook(:store_box_metadata, :machine_action_up) do |hook| require_relative "middleware/store_box_metadata" hook.append(StoreBoxMetadata) end end end end
Version data entries
22 entries across 22 versions & 3 rubygems