How to run vagrant provision on every up? -


i need run vagrant provision on every vagrant up, possible? example, provision run on first vagrant up:

config.vm.provision "shell", privileged: false,  path: "provision.sh" 

what should specify run on vagrant up?

from vagrant 1.6, issue has been fixed/addressed can specify if want run specific provision on each can add :run => 'always' provisioning line as:

config.vm.provision :shell, :run => 'always', :path => "provision.sh", :privileged => false 

the default value once


Comments

Popular posts from this blog

c - Bitwise operation with (signed) enum value -

xslt - Unnest parent nodes by child node -

YouTubePlayerFragment cannot be cast to android.support.v4.app.Fragment -