When i do a vagrant provisioning, can i ignore some provision codes from Vagrantfile on vagrant reload?
问题 In my Vagrantfile, I have two shell provisions: one is for installing system dependencies for my project, and another is for starting up nginx server. So what I wanted to have is when I vagrant reload --provision , can I ignore the provision for installing the system dependencies, and just start up the nginx server instead? Sample code: VAGRANTFILE_API_VERSION = '2' Vagrant.configure(VAGRANTFILE_API_VERSION) do |config| ... # Ignore this line on VM reload config.vm.provision 'shell', path: