8d6890f068
virt-manager-2.1.0.tar.bz2 virtman-fix-env-script-interpreter.patch * Bash autocompletion support (Lin Ma, Cole Robinson) * UI and command line –vsock support (Slavomir Kaslev) * virt-xml: Add –os-variant option (Andrea Bolognani) * virt-install: use libosinfo cpu, mem, disk size defaults (Fabiano Fidencio) * virt-install: Better usage of libosinfo -unknown distro IDs (Fabiano Fidencio) * virt-install: More usage of libosinfo for ISO –location detection * virt-install: Add –location LOCATION,kernel=X,initrd=Y for pointing to kernel/initrd in media that virt-install/libosinfo fails to detect - Drop 25b88733-urldetect-Dont-overload-suse_content-variable.patch 9308bae3-util-Fix-typo-vpcu-vcpu.patch b8aff280-virtinst-quickfix-ubuntu-net-preseed-insert-cdrom-error.patch c30b3bc6-increase-timeout-for-vm-to-start.patch virtinst-use-latest-opensuse-version-when-unknown-media.patch OBS-URL: https://build.opensuse.org/package/show/Virtualization/virt-manager?expand=0&rev=456
19 lines
794 B
Diff
19 lines
794 B
Diff
Some distros are out of support for normal customers but continue
|
|
to be supported through LTSS contracts for others. Hence the EOL
|
|
date in the osinfo-db file may be past but we want the distro to
|
|
continue to show up in the list.
|
|
|
|
Index: virt-manager-2.1.0/virtinst/osdict.py
|
|
===================================================================
|
|
--- virt-manager-2.1.0.orig/virtinst/osdict.py
|
|
+++ virt-manager-2.1.0/virtinst/osdict.py
|
|
@@ -321,7 +321,7 @@ class _OsVariant(object):
|
|
|
|
# If no EOL is present, assume EOL if release was > 5 years ago
|
|
if rel is not None:
|
|
- rel5 = _glib_to_datetime(rel) + datetime.timedelta(days=365 * 5)
|
|
+ rel5 = _glib_to_datetime(rel) + datetime.timedelta(days=365 * 10)
|
|
return now > rel5
|
|
return False
|
|
|