vagrant-lxc-ng/example/Vagrantfile

12 lines
231 B
Text
Raw Normal View History

# -*- mode: ruby -*-
# vi: set ft=ruby :
2013-03-02 23:34:48 -03:00
Vagrant.require_plugin 'vagrant-lxc'
2013-03-02 16:51:28 -03:00
Vagrant.configure("2") do |config|
config.vm.box = "ubuntu-cloud"
config.vm.provider :lxc do |lxc|
# ... soon to come lxc configs...
end
end