More comments for TODO with cleaning up disks in hyper-v

This commit is contained in:
Brian Cain 2020-03-30 15:00:43 -07:00
parent 287b0e5aab
commit 090959227e
No known key found for this signature in database
GPG Key ID: 9FC4639B2E4510A0

View File

@ -27,6 +27,11 @@ module VagrantPlugins
def self.handle_cleanup_disk(machine, defined_disks, disk_meta)
# Iterate over each disk_meta disk, check if it's still defined in the
# guests config, and if it's no longer there, remove it from the guest
disk_meta.each do |d|
# find d in defined_disk
# if found, continue on
# else, remove the disk
end
end
end
end