Sha256: b8dc74c5df5932e959346c386cb1bec9a9a8063dc13779ce9b84daf5417617f5

Contents?: true

Size: 1.73 KB

Versions: 4

Compression:

Stored size: 1.73 KB

Contents

# -- Build Hooks --

You can implement hooks in your machine definition to customize the build process.
The following hooks are currently available:

* `:before_create` before box is created
* `:after_create` after box is created
* `:after_up` after box is started
* `:after_boot_sequence` after boot command sequence is executed
* `:after_postinstall` after post-install files are executed
* `:before_ssh` before each SSH login

The hooks are triggered in `lib/veewee/provider/core/box/build.rb`

* Hooks are defined under the `:hooks` key in the box definition hash in your `definition.rb`
* Hooks must be instances of `Proc` (or respond to `call`)

## -- Examples --

### -- Upload arbitrary files --

Sure you should use postinstall to copy and execute scripts.
But if you want to copy arbitrary files to the guest you can do this in a hook.

<pre>
Veewee::Definition.declare({
  hooks => {
      :after_postinstall => Proc.new { definition.box.scp('/tmp/foo.txt', '/tmp/bar.txt') }
  }
})
</pre>

### -- Guarded SSH login --

SSH login is triggered from a separate Thread.
If SSH is available before the boot command sequence is finished
and the account password is changed in the command sequence authentication may fail.

Guarded SSH login using the `:before_ssh` hook:

<pre>
class MyHooks
  def initialize(definition)
    @definition = definition
  end

  def after_boot_sequence
    puts "unlocked ssh. port is #{@definition.ssh_host_port}"
    @ssh_enabled = true
  end

  def before_ssh
    sleep 0.5 until @ssh_enabled
  end
end

myhooks = Hooks.new(veewee_definition)

Veewee::Definition.declare({
  hooks => {
      :after_boot_sequence => Proc.new { myhooks.after_boot_sequence },
      :before_ssh => Proc.new { myhooks.before_ssh }
  }
})
</pre>




Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
veewee-0.3.12 doc/build_hooks.md
veewee-0.3.11 doc/build_hooks.md
veewee-0.3.10 doc/build_hooks.md
veewee-0.3.9 doc/build_hooks.md