lib/vagrant-ovirt3/config.rb in vagrant-ovirt3-1.0.0 vs lib/vagrant-ovirt3/config.rb in vagrant-ovirt3-1.1.0
- old
+ new
@@ -28,10 +28,12 @@
@memory = UNSET_VALUE
@cpus = UNSET_VALUE
@template = UNSET_VALUE
@console = UNSET_VALUE
@disk_size = UNSET_VALUE
+
+ @ca_no_verify = UNSET_VALUE
end
def finalize!
@url = nil if @url == UNSET_VALUE
@username = nil if @username == UNSET_VALUE
@@ -43,9 +45,11 @@
@memory = 512 if @memory == UNSET_VALUE
@cpus = 1 if @cpus == UNSET_VALUE
@template = 'Blank' if @template == UNSET_VALUE
@console = 'spice' if @console == UNSET_VALUE
@disk_size = nil if @disk_size == UNSET_VALUE
+
+ @ca_no_verify = false if @ca_no_verify == UNSET_VALUE
end
def validate(machine)
valid_console_types = ['vnc', 'spice']
raise Error::InvalidConsoleType,