Class: Landrush::Plugin

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

Class Method Summary collapse

Class Method Details

.post_boot_actionsObject



54
55
56
57
58
# File 'lib/landrush/plugin.rb', line 54

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

.pre_boot_actionsObject



47
48
49
50
51
52
# File 'lib/landrush/plugin.rb', line 47

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