No commit activity in last 3 years
No release in over 3 years
Vagrant Guests Plugin for OpenBSD
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies
 Project Readme

Build Status

vagrant-guests-openbsd

OpenBSD support in Vagrant >= 1.3.0 has been improved. This plugin is no longer necessary.

Vagrant >= 1.1 && <= 1.2.7 has a built-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
  # If you want not to mount any folders, set :disabled => true
  config.vm.synced_folder "../", "/vagrant", :disabled => true

  # other config
  # ...
end

You shoud use ':openbsd_v2' for 'config.vm.guest' to avoid name conflict with built-in plugin.

ChangeLog

0.0.3 (2013-08-03)

  • Add Vagrant 1.2.7 support