vagrant-lxc-ng/dev/Vagrantfile

12 lines
223 B
Ruby
Raw Normal View History

# -*- mode: ruby -*-
# vi: set ft=ruby :
2013-03-02 19:51:28 +00:00
require '../lib/vagrant-lxc'
2013-03-02 19:51:28 +00:00
Vagrant.configure("2") do |config|
config.vm.box = "ubuntu-cloud"
config.vm.provider :lxc do |lxc|
# ... soon to come lxc configs...
end
end