webdevops / vagrant-docker-vm

:computer: Development Vagrant VM with Docker, Samba and Mail sandbox (customizable)
https://webdevops.io/projects/vagrant-docker-vm/
MIT License
87 stars 28 forks source link

Setting "optimize_power_consumption" has been deprecated #69

Closed mblaschke closed 8 years ago

mblaschke commented 9 years ago

Setting "optimize_power_consumption" has been deprecated in the Parallels provider and will be removed in the future releases. Power consumption is enabled by default. If you want to keep it enabled, then just remove this setting from your Vagrantfile. Otherwise, please replace it with this block in order to disable the power consumption:

config.vm.provider "parallels" do |prl| prl.customize ["set", :id, "--longer-battery-life", "off"] end