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')