Delete and re-create data directory when destroying guest
This commit is contained in:
parent
a8abb6898c
commit
fe8fe55d1f
|
@ -9,6 +9,14 @@ module VagrantPlugins
|
||||||
def call(env)
|
def call(env)
|
||||||
env[:ui].info("Deleting the machine...")
|
env[:ui].info("Deleting the machine...")
|
||||||
env[:machine].provider.driver.delete_vm
|
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)
|
@app.call(env)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in New Issue