I did a global install of Laravel homestead, edited my ~/.homestead/Homestead.yaml
-file and spun up the VM with homestead up
. Everything worked fine, but then I needed to add another site. I edited Homestead.yaml
to contain the new project, the tried to run homestead provision
to apply the changes to the VM. The only thing that outputs is:
==> default: VM not created. Moving on...
I interpret that as the VM is not running, but it is. The only thing working here is homestead destroy
followed by homestead up
, but that (by its nature) detroys the VM's saved state. I though that vagrant commands was applicable to homestead as well, but vagrant suspend && vagrant up --provision
doesn't help.
So.. How do I apply my new config to an already-existing homestead VM?