56082a3f99
virt-manager-1.4.1.tar.bz2 virtinst-check-date-format.patch virtinst-no-usb-tablet-for-xenpv.patch * New VM wixard virt-bootstrap integration (Radostin Stoyanov) * New VM wizard support for virtuozzo containers (Mikhail Feoktistov) * network UI: add support to create SR-IOV VF pool (Lin Ma) * Nicer OS list in New VM wizard (Pino Toscano) * Better defaults for UEFI secureboot builds (Pavel Hrdina) * Fix defaults for aarch64 VMs if graphics are requested * virt-install: new –memdev option (Pavel Hrdina) * virt-install: add –disk logical/physical_block_size (Yuri Arabadji) * virt-install: add –features hyperv_reset=, hyperv_synic= (Venkat Datta N H) - Dropped the following patches contained in new tarball f5d709d9-lang-it-1.patch c66098f3-lang-it-2.patch 452a693e-lang-update.patch 6b5106ea-lang-it-ko-fix.patch 9c8ffe51-fix-multiple-warnings-1.patch cb182f7e-skip-authentication-only-for-VNC-with-listen-type-none.patch 0610cd6a-ensure-bool-value-used-for-set_sensitive-call.patch f341352c-remove-redundant-error-string.patch ff3b4dc5-dont-overwrite-install-bootorder.patch 2099a194-reset-guest-domain-to-none-on-domain-creation-error.patch 93085d2b-reset-guest-domain-to-none-on-domain-creation-error.patch 7aee124d-fix-multiple-warnings-2.patch f38c56c9-add-support-for-SMM-feature.patch 24f9d053-add-support-for-loader-secure-attribute.patch 4f8e795c-if-required-by-UEFI-enable-SMM-feature-and-set-q35-machine-type.patch b690908a-enable-secure-feature-together-with-smm-for-UEFI.patch OBS-URL: https://build.opensuse.org/package/show/Virtualization/virt-manager?expand=0&rev=356
146 lines
5.6 KiB
Diff
146 lines
5.6 KiB
Diff
Enhancement that gets the hosts installation location from
|
|
install.inf and also collects the repos provided by zypper.
|
|
These locations are then presented as potential installation
|
|
locations when creating a VM.
|
|
Index: virt-manager-1.4.2/virtManager/create.py
|
|
===================================================================
|
|
--- virt-manager-1.4.2.orig/virtManager/create.py
|
|
+++ virt-manager-1.4.2/virtManager/create.py
|
|
@@ -424,7 +424,13 @@ class vmmCreate(vmmGObjectUI):
|
|
self.widget("install-url-entry").set_text("")
|
|
self.widget("install-url-options").set_expanded(False)
|
|
urlmodel = self.widget("install-url-combo").get_model()
|
|
- _populate_media_model(urlmodel, self.config.get_media_urls())
|
|
+ urllist = self.config.get_media_urls()
|
|
+ (index, inst_repos) = util.getInstallRepos()
|
|
+ for u in urllist:
|
|
+ if u in inst_repos:
|
|
+ inst_repos.remove(u)
|
|
+ media_urllist = urllist + inst_repos
|
|
+ _populate_media_model(urlmodel, media_urllist)
|
|
self._set_distro_labels("-", "-")
|
|
|
|
# Install import
|
|
Index: virt-manager-1.4.2/virtinst/util.py
|
|
===================================================================
|
|
--- virt-manager-1.4.2.orig/virtinst/util.py
|
|
+++ virt-manager-1.4.2/virtinst/util.py
|
|
@@ -23,9 +23,12 @@ import os
|
|
import random
|
|
import re
|
|
import sys
|
|
+import subprocess
|
|
+from subprocess import Popen, PIPE
|
|
|
|
import libvirt
|
|
|
|
+_host_repo_url = None
|
|
|
|
def listify(l):
|
|
if l is None:
|
|
@@ -317,3 +320,104 @@ def make_meter(quiet):
|
|
if quiet:
|
|
return progress.BaseMeter()
|
|
return progress.TextMeter(fo=sys.stdout)
|
|
+
|
|
+def getHostInstallSource():
|
|
+ global _host_repo_url
|
|
+ if _host_repo_url is not None:
|
|
+ return _host_repo_url
|
|
+ if os.geteuid() != 0:
|
|
+ return None
|
|
+
|
|
+ if os.path.exists('/var/lib/YaST2/install.inf'):
|
|
+ server_ip = server_name = server_dir = inst_mode = None
|
|
+ f = open('/var/lib/YaST2/install.inf')
|
|
+ lines = f.readlines()
|
|
+ f.close()
|
|
+ # Newer install.inf files use RepoURL. Older versions require parsing more fields
|
|
+ for line in lines:
|
|
+ if line.startswith('RepoURL:'):
|
|
+ repo_url = line[:-1].split('?', 1)[0]
|
|
+ repo_url = repo_url.split(' ')
|
|
+ if len(repo_url) > 1:
|
|
+ if repo_url[1].startswith('ftp:') or repo_url[1].startswith('http:') or \
|
|
+ repo_url[1].startswith('smb:') or repo_url[1].startswith('nfs:'):
|
|
+ _host_repo_url = repo_url[1]
|
|
+ return repo_url[1]
|
|
+ return None
|
|
+ elif line.startswith('InstMode:'):
|
|
+ inst_mode = line[:-1].split('?', 1)[0]
|
|
+ inst_mode = inst_mode.split(' ')
|
|
+ inst_mode = inst_mode[1]
|
|
+ if inst_mode != 'ftp' and inst_mode != 'http' and inst_mode != 'smb' and inst_mode != 'nfs':
|
|
+ return None
|
|
+ elif line.startswith('ServerIP:'):
|
|
+ server_ip = line[:-1].split('?', 1)[0]
|
|
+ server_ip = server_ip.split(' ')
|
|
+ server_ip = server_ip[1]
|
|
+ elif line.startswith('ServerName:'):
|
|
+ server_name = line[:-1].split('?', 1)[0]
|
|
+ server_name = server_name.split(' ')
|
|
+ server_name = server_name[1]
|
|
+ elif line.startswith('Serverdir:'):
|
|
+ server_dir = line[:-1].split('?', 1)[0]
|
|
+ server_dir = server_dir.split(' ')
|
|
+ server_dir = server_dir[1]
|
|
+ if inst_mode:
|
|
+ repo_url = inst_mode + "://"
|
|
+ if server_name:
|
|
+ repo_url = repo_url + server_name + "/"
|
|
+ if server_dir:
|
|
+ repo_url = repo_url + server_dir
|
|
+ elif server_ip:
|
|
+ repo_url = repo_url + server_ip + "/"
|
|
+ if server_dir:
|
|
+ repo_url = repo_url + server_dir
|
|
+ _host_repo_url = repo_url
|
|
+ return repo_url
|
|
+ else:
|
|
+ (_,zypper_output) = lookupZypperRepos()
|
|
+ if len(zypper_output):
|
|
+ _host_repo_url = zypper_output[0]
|
|
+ return _host_repo_url
|
|
+ return None
|
|
+
|
|
+def lookupZypperRepos(dom0_inst_source=None):
|
|
+ try:
|
|
+ env = os.environ.copy()
|
|
+ env['LC_ALL'] = 'C'
|
|
+ cmd = ['/usr/bin/zypper', 'lr', '-u', '-P', '-E']
|
|
+ p = subprocess.Popen(cmd, stdout=PIPE, stderr=PIPE, env=env)
|
|
+ stdout, stderr = p.communicate()
|
|
+ zypper_output = stdout
|
|
+ zypper_list = zypper_output.split("\n")
|
|
+ zypper_header = [x.strip(' ') for x in zypper_list[0].split("|")]
|
|
+ uri_index = zypper_header.index("URI")
|
|
+ except:
|
|
+ inst_source = []
|
|
+ if dom0_inst_source:
|
|
+ inst_source = [dom0_inst_source]
|
|
+ return (0, inst_source)
|
|
+
|
|
+ index_dom0 = -1
|
|
+ number_of_sources = 0
|
|
+ zypper_output = []
|
|
+ for repo in zypper_list:
|
|
+ repo = [x.strip(' ') for x in repo.split("|")]
|
|
+ if len(repo) >= uri_index:
|
|
+ str = repo[uri_index]
|
|
+ if str.startswith('ftp://') or str.startswith('http://') or str.startswith('nfs://') or str.startswith('smb://'):
|
|
+ zypper_output.append(str)
|
|
+ if dom0_inst_source is not None and str == dom0_inst_source:
|
|
+ index_dom0 = number_of_sources
|
|
+ number_of_sources += 1
|
|
+
|
|
+ if index_dom0 == -1 and dom0_inst_source:
|
|
+ index_dom0 = 0
|
|
+ zypper_output.insert(0, dom0_inst_source)
|
|
+ return (index_dom0, zypper_output)
|
|
+
|
|
+def getInstallRepos():
|
|
+ if os.geteuid() != 0:
|
|
+ return (0, [])
|
|
+ return lookupZypperRepos(getHostInstallSource())
|
|
+
|