Skip to content

Commit

Permalink
copy past fail
Browse files Browse the repository at this point in the history
  • Loading branch information
antoinerrr committed Dec 8, 2015
1 parent 568d4fb commit 58b55a3
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions lib/vagrant-proxmox/config.rb
Original file line number Diff line number Diff line change
Expand Up @@ -158,8 +158,8 @@ def initialize
@vm_id_range = 900..999
@vm_name_prefix = 'vagrant_'
@vm_memory = 512
@qemu_disk_size = '20G'
@qemu_storage = 'local'
@vm_disk_size = '20G'
@vm_storage = 'local'
@task_timeout = 60
@task_status_check_interval = 2
@ssh_timeout = 60
Expand Down Expand Up @@ -193,6 +193,8 @@ def finalize!
@qemu_iso = nil if @qemu_iso == UNSET_VALUE
@qemu_disk_size = nil if @qemu_disk_size == UNSET_VALUE
@qemu_disk_size = convert_disk_size_to_gigabyte @qemu_disk_size if @qemu_disk_size
@vm_disk_size = nil if @vm_disk_size == UNSET_VALUE
@vm_disk_size = convert_disk_size_to_gigabyte @vm_disk_size if @vm_disk_size
end

def validate machine
Expand Down

0 comments on commit 58b55a3

Please sign in to comment.