%PDF-1.5 %���� ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY
Server IP : 188.40.95.74 / Your IP : 216.73.216.142 Web Server : Apache System : Linux cp01.striminghost.net 3.10.0-1160.119.1.el7.tuxcare.els13.x86_64 #1 SMP Fri Nov 22 06:29:45 UTC 2024 x86_64 User : vlasotin ( 1054) PHP Version : 5.6.40 Disable Function : NONE MySQL : ON | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /usr/share/leapp-repository/repositories/system_upgrade/common/libraries/config/ |
Upload File : |
""" This is not regular library. The library is supposed to be used only for testing purposes. Import of the library is expected only inside test files. """ from leapp.models import EnvVar, IPUConfig, OSRelease, Version CONFIG = IPUConfig( leapp_env_vars=[EnvVar(name='LEAPP_DEVEL', value='0')], os_release=OSRelease( release_id='rhel', name='Red Hat Enterprise Linux Server', pretty_name='RHEL', version='7.6 (Maipo)', version_id='7.6' ), version=Version( source='7.6', target='8.0' ), architecture='x86_64', kernel='3.10.0-957.43.1.el7.x86_64', ) CONFIG_NO_NETWORK_RENAMING = IPUConfig( leapp_env_vars=[EnvVar(name='LEAPP_DEVEL', value='0'), EnvVar(name='LEAPP_NO_NETWORK_RENAMING', value='1')], os_release=OSRelease( release_id='rhel', name='Red Hat Enterprise Linux Server', pretty_name='RHEL', version='7.6 (Maipo)', version_id='7.6' ), version=Version( source='7.6', target='8.0' ), architecture='x86_64', kernel='3.10.0-957.43.1.el7.x86_64', ) CONFIG_ALL_SIGNED = IPUConfig( leapp_env_vars=[EnvVar(name='LEAPP_DEVEL_RPMS_ALL_SIGNED', value='1')], os_release=OSRelease( release_id='rhel', name='Red Hat Enterprise Linux Server', pretty_name='RHEL', version='7.6 (Maipo)', version_id='7.6' ), version=Version( source='7.6', target='8.0' ), architecture='x86_64', kernel='3.10.0-957.43.1.el7.x86_64', ) CONFIG_S390X = IPUConfig( os_release=OSRelease( release_id='rhel', name='Red Hat Enterprise Linux Server', pretty_name='RHEL', version='7.6 (Maipo)', version_id='7.6' ), version=Version( source='7.6', target='8.0' ), architecture='s390x', kernel='3.10.0-957.43.1.el7.x86_64', )