class Landrush::Plugin

Public Class Methods

post_boot_actions() click to toggle source
# File lib/landrush/plugin.rb, line 57
def self.post_boot_actions
  Vagrant::Action::Builder.new.tap do |b|
    b.use Action::InstallPrerequisites
  end
end
pre_boot_actions() click to toggle source
# File lib/landrush/plugin.rb, line 50
def self.pre_boot_actions
  Vagrant::Action::Builder.new.tap do |b|
    b.use Action::Setup
    b.use Action::RedirectDns
  end
end