Delete and re-create data directory when destroying guest

This commit is contained in:
Chris Roberts 2018-06-18 09:09:27 -07:00
parent a8abb6898c
commit fe8fe55d1f
1 changed files with 8 additions and 0 deletions

View File

@ -9,6 +9,14 @@ module VagrantPlugins
def call(env)
env[:ui].info("Deleting the machine...")
env[:machine].provider.driver.delete_vm
# NOTE: We remove the data directory and recreate it
# to overcome an issue seen when running within
# the WSL. Hyper-V will successfully remove the
# VM and the files will appear to be gone, but
# on a subsequent up, they will cause collisions.
# This forces them to be gone for real.
FileUtils.rm_rf(env[:machine].data_dir)
FileUtils.mkdir_p(env[:machine].data_dir)
@app.call(env)
end
end