Sha256: 64254c5d7c428d374a833c789d5ac3b1fbaff130380ad23aa8f6f5862608fd95

Contents?: true

Size: 760 Bytes

Versions: 8

Compression:

Stored size: 760 Bytes

Contents

# 
# This serves as a simple example, and it's what I'm using for testing locally.
#
# If you're doing development and want to run this locally you can simply
# `bundle install`, then prefix all your vagrant commands with `bundle exec`, like so:
#
#   VAGRANT_CWD=examples bundle exec vagrant up
#   VAGRANT_CWD=examples bundle exce vagrant halt
#

# This line is unnecessary when the plugin is installed normally; it's just
# here for the development / testing use case.
Vagrant.require_plugin "landrush"

Vagrant.configure("2") do |config|
  config.vm.box = "precise64"

  config.landrush.enable

  config.vm.hostname = "myhost.vagrant.dev"

  config.landrush.host 'static1.example.com', '1.2.3.4'
  config.landrush.host 'static2.example.com', '2.3.4.5'
end

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
landrush-0.12.0 examples/Vagrantfile
landrush-0.11.0 examples/Vagrantfile
landrush-0.10.0 examples/Vagrantfile
landrush-0.9.0 examples/Vagrantfile
landrush-0.8.0 examples/Vagrantfile
landrush-0.7.1 examples/Vagrantfile
landrush-0.7.0 examples/Vagrantfile
landrush-0.6.0 examples/Vagrantfile