vagrant-libvirt expects that the parameter virtual_size from metadata.json is an integer and not a string. Supplying a string results in a backtrace when the user provides a different value for libvirt.machine_virtual_size (as the integer is then compared to string).
72 lines
2.3 KiB
Python
72 lines
2.3 KiB
Python
# Copyright (c) 2015 SUSE Linux GmbH. All rights reserved.
|
|
#
|
|
# This file is part of kiwi.
|
|
#
|
|
# kiwi is free software: you can redistribute it and/or modify
|
|
# it under the terms of the GNU General Public License as published by
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
# (at your option) any later version.
|
|
#
|
|
# kiwi is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with kiwi. If not, see <http://www.gnu.org/licenses/>
|
|
#
|
|
import os
|
|
from textwrap import dedent
|
|
|
|
# project
|
|
from kiwi.storage.subformat.vagrant_base import DiskFormatVagrantBase
|
|
from kiwi.storage.subformat.qcow2 import DiskFormatQcow2
|
|
from kiwi.command import Command
|
|
|
|
|
|
class DiskFormatVagrantLibVirt(DiskFormatVagrantBase):
|
|
"""
|
|
**Create a vagrant box for the libvirt provider**
|
|
"""
|
|
def vagrant_post_init(self):
|
|
self.image_format = 'vagrant.libvirt.box'
|
|
self.provider = 'libvirt'
|
|
|
|
def create_box_img(self, temp_image_dir):
|
|
"""
|
|
Creates the qcow2 disk image box for libvirt vagrant provider
|
|
"""
|
|
qcow = DiskFormatQcow2(
|
|
self.xml_state, self.root_dir, self.target_dir
|
|
)
|
|
qcow.create_image_format()
|
|
box_img = os.sep.join([temp_image_dir, 'box.img'])
|
|
Command.run(
|
|
[
|
|
'mv', self.get_target_file_path_for_format(qcow.image_format),
|
|
box_img
|
|
]
|
|
)
|
|
return [box_img]
|
|
|
|
def get_additional_metadata(self):
|
|
"""
|
|
Returns a dictionary containing the virtual image format and the size
|
|
of the image.
|
|
"""
|
|
return {
|
|
'format': 'qcow2',
|
|
'virtual_size': int(self.vagrantconfig.get_virtualsize() or 42)
|
|
}
|
|
|
|
def get_additional_vagrant_config_settings(self):
|
|
"""
|
|
Returns settings for the libvirt provider telling vagrant to use kvm.
|
|
"""
|
|
return dedent('''
|
|
config.vm.synced_folder ".", "/vagrant", type: "rsync"
|
|
config.vm.provider :libvirt do |libvirt|
|
|
libvirt.driver = "kvm"
|
|
end
|
|
''').strip()
|