Module: Vagrant::Chefdev::Action

Includes:
Action::Builtin
Defined in:
lib/vagrant-chefdev/action.rb,
lib/vagrant-chefdev/action/delete_chef_node.rb,
lib/vagrant-chefdev/action/delete_chef_client.rb

Defined Under Namespace

Classes: DeleteChefClient, DeleteChefNode

Class Method Summary collapse

Class Method Details

.delete_chef_clientObject



18
19
20
21
22
23
# File 'lib/vagrant-chefdev/action.rb', line 18

def self.delete_chef_client
  Vagrant::Action::Builder.new.tap do |builder|
    builder.use ConfigValidate
    builder.use DeleteChefClient
  end
end

.delete_chef_nodeObject



10
11
12
13
14
15
# File 'lib/vagrant-chefdev/action.rb', line 10

def self.delete_chef_node
  Vagrant::Action::Builder.new.tap do |builder|
    builder.use ConfigValidate
    builder.use DeleteChefNode
  end
end