1
0
mirror of https://github.com/mail-in-a-box/mailinabox.git synced 2025-04-03 00:07:05 +00:00

QA: 'name' isn't immutable, so make a copy

This commit is contained in:
downtownallday 2023-05-29 19:45:27 -04:00
parent c66e9f3840
commit 1aab41e7fe

View File

@ -8,6 +8,7 @@
#####
def use_preloaded_box(obj, name, preloaded_dir=".")
obj.vm.box = String.new(name)
_name=name.sub! '/','-' # ubuntu/bionic64 => ubuntu-bionic64
if File.file?("#{preloaded_dir}/preloaded/preloaded-#{_name}.box")
# box name needs to be unique on the system
@ -17,8 +18,6 @@ def use_preloaded_box(obj, name, preloaded_dir=".")
# do not update additions when booting this machine
obj.vbguest.auto_update = false
end
else
obj.vm.box = name
end
end