Sha256: 083968a788c84869c9c0f92c5beee330b28c360e8f7a99fdb0e1ff5c089074b0

Contents?: true

Size: 972 Bytes

Versions: 1

Compression:

Stored size: 972 Bytes

Contents

[![Build Status](https://secure.travis-ci.org/nabeken/vagrant-guests-openbsd.png)](http://travis-ci.org/nabeken/vagrant-guests-openbsd)

# vagrant-guests-openbsd

Vagrant 1.1 has a build-in OpenBSD plugin but the plugin lacks multiple network and nfs mount support.

This plugins allows you to run OpenBSD under vagrant until Vagrant merges this changes.

## Installation

    $ vagrant plugin install vagrant-guests-openbsd

## Usage

Add this line to your Vagrantfile:

    Vagrant.require_plugin "vagrant-guests-openbsd"
    Vagrant.configure("2") do |config|
      config.vm.guest = :openbsd_v2

      # If you want hostonly network
      config.vm.network :private_network, ip: "192.168.67.10", netmask: "255.255.255.0"
      # If you want to mount folders with nfs
      config.vm.synced_folder "../", "/vagrant", :nfs => true

      # other config
      # ...
    end

You shoud use ':openbsd\_v2' for 'config.vm.guest' to avoid name conflict with build-in plugin.

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
vagrant-guests-openbsd-0.0.2 README.md