Set a default for the "gui" option for VirtualBox
This commit is contained in:
parent
54a2f6b89e
commit
e955596939
|
@ -26,6 +26,13 @@ module VagrantPlugins
|
||||||
def customize(command)
|
def customize(command)
|
||||||
@customizations << command
|
@customizations << command
|
||||||
end
|
end
|
||||||
|
|
||||||
|
# This is the hook that is called to finalize the object before it
|
||||||
|
# is put into use.
|
||||||
|
def finalize!
|
||||||
|
# Default is to not show a GUI
|
||||||
|
@gui = false if @gui == UNSET_VALUE
|
||||||
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in New Issue