Class: Zayin::Rake::VagrantTasks

Inherits:
Rake::TaskLib
  • Object
show all
Defined in:
lib/zayin/rake/vagrant.rb

Overview

Defines a set of Rake tasks for working with Vagrant VMs.

Instance Method Summary collapse

Constructor Details

#initialize {|_self| ... } ⇒ VagrantTasks

Returns a new instance of VagrantTasks.

Yields:

  • (_self)

Yield Parameters:



10
11
12
13
14
# File 'lib/zayin/rake/vagrant.rb', line 10

def initialize
  yield self if block_given?
  @env ||= Vagrant::Environment.new
  define
end

Instance Method Details

#defineObject



26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
# File 'lib/zayin/rake/vagrant.rb', line 26

def define
  namespace :vagrant do
    desc 'vagrant up'
    task :up do
      puts 'vagrant up'
      @env.cli('up')
    end

    desc 'vagrant suspend'
    task :suspend do
      puts 'vagrant suspend'
      @env.cli('suspend')
    end

    desc 'Halts the VM.'
    task :halt do
      puts 'sudo halt'
      vm_ssh('sudo halt')
    end

    desc 'vagrant destroy'
    task :destroy do
      if @env.primary_vm.created?
        puts 'vagrant destroy'
        @env.cli('destroy')
      end
    end

    desc 'vagrant status'
    task :status do
      puts 'vagrant status'
      @env.cli('status')
    end

    namespace :chef do
      desc 'Dumps out the stacktrace from a Chef error.'
      task :st do
        raise "Must run `vagrant up`" unless @env.primary_vm.created?
        raise "Must be running!" unless @env.primary_vm.vm.running?
        puts "Getting chef stacktrace."
        vm_ssh("cat /tmp/vagrant-chef-1/chef-stacktrace.out")
      end

      desc 'Cleans up the cookbooks.'
      task :clean do
        FileUtils.rmtree('cookbooks', :verbose => true)
      end

      desc 'Clones the cookbooks given from git. URL is required. Cookbook directory and branch are optional.'
      task :cookbook, [:git_url, :cookbook_dir, :branch] do |t, args|
        url    = args[:git_url]
        cb_dir = args[:cookbook_dir]
        branch = args[:branch]
        raise 'You must specify a URL to clone.' unless url.nil?

        basedir = File.dirname(cb_dir)
        Dir.mkdir(basedir) if basedir != '.' && !File.directory?(basedir)

        params = []
        params << "--branch=#{branch}" unless branch.nil?
        params << url
        params << cb_dir unless cb_dir.nil?

        sh %{git clone #{params.join(' ')}}
      end
    end
  end
end

#vm_ssh(cmd) ⇒ Object



16
17
18
19
20
21
22
23
24
# File 'lib/zayin/rake/vagrant.rb', line 16

def vm_ssh(cmd)
  puts ">>> #{cmd}"
  @env.primary_vm.ssh.execute do |ssh|
    ssh.exec!(cmd) do |channel, stream, data|
      print data
      $stdout.flush
    end
  end
end