From afd302529cf9e09a1fd4244f7dcd9747064d6e38 Mon Sep 17 00:00:00 2001 From: Fabio Rehm Date: Wed, 6 Nov 2013 21:38:59 -0200 Subject: [PATCH] Enable parallelization [GH-152] --- CHANGELOG.md | 1 + lib/vagrant-lxc/plugin.rb | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d0bb17f..cd96267 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,7 @@ IMPROVEMENTS: + - Support for `vagrant up` in parallel [#152](https://github.com/fgrehm/vagrant-lxc/issues/152) - Warn users about unsupported private / public networking configs [#154](https://github.com/fgrehm/vagrant-lxc/issues/154) - Respect Vagrantfile options to disable forwarded port [#149](https://github.com/fgrehm/vagrant-lxc/issues/149) diff --git a/lib/vagrant-lxc/plugin.rb b/lib/vagrant-lxc/plugin.rb index 549a084..801c927 100644 --- a/lib/vagrant-lxc/plugin.rb +++ b/lib/vagrant-lxc/plugin.rb @@ -9,7 +9,7 @@ module Vagrant LXC-based virtual machines. EOF - provider(:lxc) do + provider(:lxc, parallel: true) do require File.expand_path("../provider", __FILE__) I18n.load_path << File.expand_path(File.dirname(__FILE__) + '/../../locales/en.yml')