Class: Landrush::Plugin

Inherits:
Object
  • Object
show all
Defined in:
lib/landrush/plugin.rb

Class Method Summary collapse

Class Method Details

.post_boot_actionsObject



36
37
38
39
40
41
# File 'lib/landrush/plugin.rb', line 36

def self.post_boot_actions
  Vagrant::Action::Builder.new.tap do |b|
    b.use Action::InstallPrerequisites
    b.use Action::RedirectDns
  end
end

.pre_boot_actionsObject



30
31
32
33
34
# File 'lib/landrush/plugin.rb', line 30

def self.pre_boot_actions
  Vagrant::Action::Builder.new.tap do |b|
    b.use Action::Setup
  end
end