├── .copr ├── Makefile └── build.sh ├── .github ├── ISSUE_TEMPLATE │ └── bug_report.md ├── renovate.json └── workflows │ ├── codespell.yml │ ├── differential-shellcheck.yml │ ├── pr-welcome-msg.yml │ └── unit-tests.yml ├── .gitignore ├── .isort.cfg ├── .packit.yaml ├── .pylintrc ├── .readthedocs.yaml ├── .travis.yml ├── .travis └── githubio-data-idrsa ├── CONTRIBUTING.md ├── LICENSE ├── Makefile ├── README.md ├── commands ├── answer │ └── __init__.py ├── command_utils.py ├── config.py ├── list_runs │ └── __init__.py ├── preupgrade │ └── __init__.py ├── rerun │ └── __init__.py ├── tests │ └── test_upgrade_paths.py └── upgrade │ ├── __init__.py │ ├── breadcrumbs.py │ └── util.py ├── conftest.py ├── docs ├── Makefile ├── requirements-docs.txt └── source │ ├── _static │ ├── css │ │ ├── asciinema-player.css │ │ └── custom.css │ ├── fonts │ │ └── fonts │ │ │ └── PowerlineSymbols.otf │ ├── images │ │ └── inplace-upgrade-workflow.svg │ └── js │ │ └── asciinema-player.js │ ├── conf.py │ ├── configuring-ipu │ ├── envars.md │ ├── experimental-features │ │ ├── index.rst │ │ └── livemode.md │ └── index.rst │ ├── contributing │ ├── coding-guidelines.md │ ├── community-upgrades.md │ ├── index.rst │ └── pr-guidelines.md │ ├── faq.md │ ├── index.rst │ ├── installation-and-building.md │ ├── libraries-and-api │ ├── deprecations-list.md │ └── index.rst │ ├── project-structure │ ├── dddd.md │ ├── index.rst │ ├── leapp-data.md │ ├── pes-events.md │ └── repomap.md │ ├── tutorials │ ├── configurable-actors.md │ ├── custom-content.md │ ├── dealing-with-dependencies.md │ ├── howto-first-actor-upgrade.md │ ├── index.rst │ ├── setup-devel-env.md │ ├── templates │ │ ├── add-kernel-driver.md │ │ ├── execute-custom-script.md │ │ └── index.rst │ └── troubleshooting-debugging.md │ └── upgrade-architecture-and-workflow │ ├── dracut-modules-and-upgrade-initramfs.md │ ├── index.rst │ ├── phases-overview.md │ └── target-userspace-creator.md ├── etc ├── fapolicyd │ └── rules.d │ │ └── 31-leapp-repository.rules └── leapp │ ├── actor_conf.d │ └── .gitkeep │ ├── files │ ├── device_driver_deprecation_data.json │ ├── pes-events.json │ └── repomap.json │ └── transaction │ ├── to_install │ ├── to_keep │ └── to_remove ├── packaging ├── leapp-repository.spec └── other_specs │ └── leapp-el7toel8-deps.spec ├── pytest.ini ├── repos ├── common │ ├── .leapp │ │ ├── info │ │ └── leapp.conf │ └── topics │ │ └── systeminfo.py └── system_upgrade │ ├── common │ ├── .leapp │ │ ├── info │ │ └── leapp.conf │ ├── actors │ │ ├── addupgradebootentry │ │ │ ├── actor.py │ │ │ ├── libraries │ │ │ │ └── addupgradebootentry.py │ │ │ └── tests │ │ │ │ ├── files │ │ │ │ ├── grub_test.fixed │ │ │ │ ├── grub_test.wrong │ │ │ │ ├── grub_test_newline.fixed │ │ │ │ └── grub_test_newline.wrong │ │ │ │ └── unit_test_addupgradebootentry.py │ │ ├── adjustlocalrepos │ │ │ ├── actor.py │ │ │ ├── libraries │ │ │ │ └── adjustlocalrepos.py │ │ │ └── tests │ │ │ │ └── test_adjustlocalrepos.py │ │ ├── applycustomdnfconf │ │ │ ├── actor.py │ │ │ ├── libraries │ │ │ │ └── applycustomdnfconf.py │ │ │ └── tests │ │ │ │ └── test_applycustomdnfconf.py │ │ ├── applytransactionworkarounds │ │ │ ├── actor.py │ │ │ └── tests │ │ │ │ └── unit_test_applytransactionworkarounds.py │ │ ├── baculacheck │ │ │ ├── actor.py │ │ │ ├── libraries │ │ │ │ └── baculacheck.py │ │ │ └── tests │ │ │ │ └── test_baculacheck.py │ │ ├── biosdevname │ │ │ ├── actor.py │ │ │ ├── libraries │ │ │ │ └── biosdevname.py │ │ │ └── tests │ │ │ │ └── test_biosdevname.py │ │ ├── cephvolumescan │ │ │ ├── actor.py │ │ │ ├── libraries │ │ │ │ └── cephvolumescan.py │ │ │ └── tests │ │ │ │ └── test_cephvolumescan.py │ │ ├── checkbootavailspace │ │ │ ├── actor.py │ │ │ ├── libraries │ │ │ │ └── checkbootavailspace.py │ │ │ └── tests │ │ │ │ └── unit_test_checkbootavailspace.py │ │ ├── checkcifs │ │ │ ├── actor.py │ │ │ ├── libraries │ │ │ │ └── checkcifs.py │ │ │ └── tests │ │ │ │ └── test_checkcifs.py │ │ ├── checkconsumedassets │ │ │ ├── actor.py │ │ │ ├── libraries │ │ │ │ └── check_consumed_assets.py │ │ │ └── tests │ │ │ │ └── test_asset_version_checking.py │ │ ├── checkcustommodifications │ │ │ ├── actor.py │ │ │ ├── libraries │ │ │ │ └── checkcustommodifications.py │ │ │ └── tests │ │ │ │ └── test_checkcustommodifications.py │ │ ├── checkdetecteddevicesanddrivers │ │ │ ├── actor.py │ │ │ └── libraries │ │ │ │ └── checkdddd.py │ │ ├── checkdnfpluginpath │ │ │ ├── actor.py │ │ │ ├── libraries │ │ │ │ └── checkdnfpluginpath.py │ │ │ └── tests │ │ │ │ └── test_checkdnfpluginpath.py │ │ ├── checkdynamiclinkerconfiguration │ │ │ ├── actor.py │ │ │ ├── libraries │ │ │ │ └── checkdynamiclinkerconfiguration.py │ │ │ └── tests │ │ │ │ └── test_checkdynamiclinkerconfiguration.py │ │ ├── checketcreleasever │ │ │ ├── actor.py │ │ │ ├── libraries │ │ │ │ └── checketcreleasever.py │ │ │ └── tests │ │ │ │ └── test_checketcreleasever.py │ │ ├── checkfips │ │ │ ├── actor.py │ │ │ └── tests │ │ │ │ └── test_checkfips.py │ │ ├── checkfstabmountorder │ │ │ ├── actor.py │ │ │ ├── libraries │ │ │ │ └── checkfstabmountorder.py │ │ │ └── tests │ │ │ │ └── test_checkfstabmountorder.py │ │ ├── checkgrubcore │ │ │ ├── actor.py │ │ │ └── tests │ │ │ │ └── test_checkgrubcore.py │ │ ├── checkinsightsautoregister │ │ │ ├── actor.py │ │ │ ├── libraries │ │ │ │ └── checkinsightsautoregister.py │ │ │ └── tests │ │ │ │ └── test_reportinsightsautoregister.py │ │ ├── checkipaserver │ │ │ ├── actor.py │ │ │ ├── libraries │ │ │ │ └── checkipaserver.py │ │ │ └── tests │ │ │ │ └── test_check_ipa_server_checkipaserver.py │ │ ├── checkleftoverpackages │ │ │ ├── actor.py │ │ │ ├── libraries │ │ │ │ └── checkleftoverpackages.py │ │ │ └── tests │ │ │ │ └── test_checkleftoverpackages.py │ │ ├── checkluks │ │ │ ├── actor.py │ │ │ ├── libraries │ │ │ │ └── checkluks.py │ │ │ └── tests │ │ │ │ └── test_checkluks.py │ │ ├── checkmemory │ │ │ ├── actor.py │ │ │ ├── libraries │ │ │ │ └── checkmemory.py │ │ │ └── tests │ │ │ │ └── test_checkmemory.py │ │ ├── checkmicroarchitecture │ │ │ ├── actor.py │ │ │ ├── libraries │ │ │ │ └── checkmicroarchitecture.py │ │ │ └── tests │ │ │ │ └── test_checkmicroarchitecture.py │ │ ├── checkmountoptions │ │ │ ├── actor.py │ │ │ ├── libraries │ │ │ │ └── checkmountoptions.py │ │ │ └── tests │ │ │ │ └── test_checkmountoptions.py │ │ ├── checknfs │ │ │ ├── actor.py │ │ │ └── tests │ │ │ │ └── test_checknfs.py │ │ ├── checkosrelease │ │ │ ├── actor.py │ │ │ ├── libraries │ │ │ │ └── checkosrelease.py │ │ │ └── tests │ │ │ │ └── test_checkosrelease.py │ │ ├── checkpersistentmounts │ │ │ ├── actor.py │ │ │ ├── libraries │ │ │ │ └── checkpersistentmounts.py │ │ │ └── tests │ │ │ │ └── test_checkpersistentmounts.py │ │ ├── checkrhsmsku │ │ │ ├── actor.py │ │ │ ├── libraries │ │ │ │ └── checkrhsmsku.py │ │ │ └── tests │ │ │ │ └── test_rhsmsku_checkrhsmsku.py │ │ ├── checkrootsymlinks │ │ │ ├── actor.py │ │ │ └── tests │ │ │ │ └── unit_test_checkrootsymlinks.py │ │ ├── checksaphana │ │ │ ├── actor.py │ │ │ ├── libraries │ │ │ │ └── checksaphana.py │ │ │ └── tests │ │ │ │ └── test_checksaphana.py │ │ ├── checkselinux │ │ │ ├── actor.py │ │ │ ├── libraries │ │ │ │ └── checkselinux.py │ │ │ └── tests │ │ │ │ └── test_checkselinux.py │ │ ├── checkskippedrepositories │ │ │ ├── actor.py │ │ │ └── tests │ │ │ │ └── test_checkskippedrepos_checkskippedrepositories.py │ │ ├── checkskipphase │ │ │ └── actor.py │ │ ├── checksystemarch │ │ │ ├── actor.py │ │ │ ├── libraries │ │ │ │ └── checksystemarch.py │ │ │ └── tests │ │ │ │ └── test_checksystemarch.py │ │ ├── checktargetiso │ │ │ ├── actor.py │ │ │ ├── libraries │ │ │ │ └── check_target_iso.py │ │ │ └── tests │ │ │ │ └── test_check_target_iso.py │ │ ├── checktargetrepos │ │ │ ├── actor.py │ │ │ ├── libraries │ │ │ │ └── checktargetrepos.py │ │ │ └── tests │ │ │ │ └── test_checktargetrepos.py │ │ ├── checktargetversion │ │ │ ├── actor.py │ │ │ ├── libraries │ │ │ │ └── checktargetversion.py │ │ │ └── tests │ │ │ │ └── test_checktargetversion.py │ │ ├── checkthirdpartytargetpythonmodules │ │ │ ├── actor.py │ │ │ ├── libraries │ │ │ │ └── checkthirdpartytargetpythonmodules.py │ │ │ └── tests │ │ │ │ └── test_check_third_party_target_python_modules.py │ │ ├── checkyumpluginsenabled │ │ │ ├── actor.py │ │ │ ├── libraries │ │ │ │ └── checkyumpluginsenabled.py │ │ │ └── tests │ │ │ │ └── test_checkyumpluginsenabled.py │ │ ├── cloud │ │ │ ├── checkgrubenvtofile │ │ │ │ ├── actor.py │ │ │ │ ├── libraries │ │ │ │ │ └── checkgrubenvtofile.py │ │ │ │ └── tests │ │ │ │ │ └── test_checkgrubenvtofile.py │ │ │ ├── checkrhui │ │ │ │ ├── actor.py │ │ │ │ ├── libraries │ │ │ │ │ └── checkrhui.py │ │ │ │ └── tests │ │ │ │ │ └── component_test_checkrhui.py │ │ │ ├── convertgrubenvtofile │ │ │ │ ├── actor.py │ │ │ │ ├── libraries │ │ │ │ │ └── convertgrubenvtofile.py │ │ │ │ └── tests │ │ │ │ │ └── test_convertgrubenvtofile.py │ │ │ └── scanhybridimage │ │ │ │ ├── actor.py │ │ │ │ ├── libraries │ │ │ │ └── scanhybridimage.py │ │ │ │ └── tests │ │ │ │ └── test_scanhybridimage.py │ │ ├── commonleappdracutmodules │ │ │ ├── actor.py │ │ │ ├── files │ │ │ │ └── dracut │ │ │ │ │ ├── 85sys-upgrade-redhat │ │ │ │ │ ├── do-upgrade.sh │ │ │ │ │ └── module-setup.sh │ │ │ │ │ └── 90sys-upgrade │ │ │ │ │ ├── .profile │ │ │ │ │ ├── .shrc │ │ │ │ │ ├── initrd-cleanup-override.conf │ │ │ │ │ ├── initrd-system-upgrade-generator │ │ │ │ │ ├── leapp_debug_tools.sh │ │ │ │ │ ├── module-setup.sh │ │ │ │ │ ├── upgrade.service │ │ │ │ │ ├── upgrade.sh │ │ │ │ │ └── upgrade.target │ │ │ ├── libraries │ │ │ │ └── modscan.py │ │ │ └── tests │ │ │ │ └── test_modscan_commonleappdracutmodules.py │ │ ├── copydnfconfintotargetuserspace │ │ │ ├── actor.py │ │ │ ├── libraries │ │ │ │ └── copydnfconfintotargetuserspace.py │ │ │ └── tests │ │ │ │ └── test_dnfconfuserspacecopy.py │ │ ├── createisorepofile │ │ │ ├── actor.py │ │ │ └── libraries │ │ │ │ └── create_iso_repofile.py │ │ ├── createresumeservice │ │ │ ├── actor.py │ │ │ ├── files │ │ │ │ └── leapp_resume.service │ │ │ └── tests │ │ │ │ └── test_createresumeservice.py │ │ ├── cryptopoliciescheck │ │ │ ├── actor.py │ │ │ ├── libraries │ │ │ │ └── cryptopoliciescheck.py │ │ │ └── tests │ │ │ │ ├── component_test_cryptopoliciescheck.py │ │ │ │ └── unit_test_cryptopoliciescheck.py │ │ ├── detectgrubconfigerror │ │ │ ├── actor.py │ │ │ └── tests │ │ │ │ └── test_detectgrubconfigerror.py │ │ ├── detectkerneldrivers │ │ │ ├── actor.py │ │ │ └── libraries │ │ │ │ └── detectkerneldrivers.py │ │ ├── distributionsignedrpmcheck │ │ │ ├── actor.py │ │ │ ├── libraries │ │ │ │ └── distributionsignedrpmcheck.py │ │ │ └── tests │ │ │ │ └── test_distributionsignedrpmcheck.py │ │ ├── distributionsignedrpmscanner │ │ │ ├── actor.py │ │ │ ├── libraries │ │ │ │ └── distributionsignedrpmscanner.py │ │ │ └── tests │ │ │ │ └── test_distributionsignedrpmscanner.py │ │ ├── dnfdryrun │ │ │ └── actor.py │ │ ├── dnfpackagedownload │ │ │ └── actor.py │ │ ├── dnftransactioncheck │ │ │ └── actor.py │ │ ├── dnfupgradetransaction │ │ │ └── actor.py │ │ ├── efibootorderfix │ │ │ ├── eficheckboot │ │ │ │ └── actor.py │ │ │ ├── finalization │ │ │ │ └── actor.py │ │ │ └── interim │ │ │ │ └── actor.py │ │ ├── enablerhsmtargetrepos │ │ │ ├── actor.py │ │ │ ├── libraries │ │ │ │ └── enablerhsmtargetrepos.py │ │ │ └── tests │ │ │ │ └── test_enablerhsmtargetrepos.py │ │ ├── filterrpmtransactionevents │ │ │ ├── actor.py │ │ │ └── tests │ │ │ │ └── test_filterrpmtransactionevents.py │ │ ├── forcedefaultboottotargetkernelversion │ │ │ ├── actor.py │ │ │ ├── libraries │ │ │ │ └── forcedefaultboot.py │ │ │ └── tests │ │ │ │ └── test_forcedefaultboot_forcedefaultboottotargetkernelversion.py │ │ ├── getenabledmodules │ │ │ └── actor.py │ │ ├── getinstalleddesktops │ │ │ ├── actor.py │ │ │ ├── libraries │ │ │ │ └── getinstalleddesktops.py │ │ │ └── tests │ │ │ │ └── unit_test_getinstalleddesktops.py │ │ ├── gpgpubkeycheck │ │ │ ├── actor.py │ │ │ └── libraries │ │ │ │ └── gpgpubkeycheck.py │ │ ├── ifcfgscanner │ │ │ ├── actor.py │ │ │ ├── libraries │ │ │ │ └── ifcfgscanner.py │ │ │ └── tests │ │ │ │ └── unit_test_ifcfgscanner.py │ │ ├── initramfs │ │ │ ├── checkfipsenabled │ │ │ │ ├── actor.py │ │ │ │ ├── libraries │ │ │ │ │ └── check_fips.py │ │ │ │ └── tests │ │ │ │ │ └── test_checkfipsenabled.py │ │ │ ├── checkinitramfstasks │ │ │ │ ├── actor.py │ │ │ │ ├── libraries │ │ │ │ │ └── checkinitramfstasks.py │ │ │ │ └── tests │ │ │ │ │ └── unit_test_checkinitramfstasks.py │ │ │ ├── enable_lvm_autoactivation │ │ │ │ ├── actor.py │ │ │ │ ├── libraries │ │ │ │ │ └── enable_lvm_autoactivation.py │ │ │ │ └── tests │ │ │ │ │ └── test_lvm_autoactivation_enablement.py │ │ │ ├── mount_units_generator │ │ │ │ ├── actor.py │ │ │ │ ├── files │ │ │ │ │ └── bundled_units │ │ │ │ │ │ └── boot.mount │ │ │ │ ├── libraries │ │ │ │ │ └── mount_unit_generator.py │ │ │ │ └── tests │ │ │ │ │ └── test_mount_unit_generation.py │ │ │ ├── mounttargetiso │ │ │ │ ├── actor.py │ │ │ │ └── libraries │ │ │ │ │ └── mount_target_iso.py │ │ │ ├── targetinitramfsgenerator │ │ │ │ ├── actor.py │ │ │ │ ├── libraries │ │ │ │ │ └── targetinitramfsgenerator.py │ │ │ │ └── tests │ │ │ │ │ └── test_targetinitramfsgenerator.py │ │ │ ├── tmpactor │ │ │ │ └── actor.py │ │ │ └── upgradeinitramfsgenerator │ │ │ │ ├── actor.py │ │ │ │ ├── files │ │ │ │ └── generate-initram.sh │ │ │ │ ├── libraries │ │ │ │ └── upgradeinitramfsgenerator.py │ │ │ │ └── tests │ │ │ │ └── unit_test_upgradeinitramfsgenerator.py │ │ ├── insightsautoregister │ │ │ ├── actor.py │ │ │ ├── libraries │ │ │ │ └── insightsautoregister.py │ │ │ └── tests │ │ │ │ └── test_insightsautoregister.py │ │ ├── ipascanner │ │ │ ├── actor.py │ │ │ ├── libraries │ │ │ │ └── ipascanner.py │ │ │ └── tests │ │ │ │ └── test_ipascanner.py │ │ ├── ipuworkflowconfig │ │ │ ├── actor.py │ │ │ ├── libraries │ │ │ │ └── ipuworkflowconfig.py │ │ │ └── tests │ │ │ │ ├── files │ │ │ │ ├── os-release │ │ │ │ └── os-release-8beta │ │ │ │ └── test_ipuworkflowconfig.py │ │ ├── kernel │ │ │ ├── checkinstalledkernels │ │ │ │ ├── actor.py │ │ │ │ ├── libraries │ │ │ │ │ └── checkinstalledkernels.py │ │ │ │ └── tests │ │ │ │ │ └── unit_test_checkinstalledkernels.py │ │ │ └── checkkpatch │ │ │ │ └── actor.py │ │ ├── kernelcmdlineconfig │ │ │ ├── actor.py │ │ │ ├── libraries │ │ │ │ └── kernelcmdlineconfig.py │ │ │ └── tests │ │ │ │ └── test_kernelcmdlineconfig.py │ │ ├── livemode │ │ │ ├── emit_livemode_userspace_requirements │ │ │ │ ├── actor.py │ │ │ │ ├── libraries │ │ │ │ │ └── emit_livemode_userspace_requirements.py │ │ │ │ └── tests │ │ │ │ │ └── test_emit_livemode_requirements.py │ │ │ ├── liveimagegenerator │ │ │ │ ├── actor.py │ │ │ │ ├── libraries │ │ │ │ │ └── liveimagegenerator.py │ │ │ │ └── tests │ │ │ │ │ └── test_image_generation.py │ │ │ ├── livemode_config_scanner │ │ │ │ ├── actor.py │ │ │ │ ├── configs │ │ │ │ │ └── livemode.py │ │ │ │ ├── libraries │ │ │ │ │ └── scan_livemode_config.py │ │ │ │ └── tests │ │ │ │ │ └── test_config_scanner.py │ │ │ ├── livemodereporter │ │ │ │ ├── actor.py │ │ │ │ ├── libraries │ │ │ │ │ └── report_livemode.py │ │ │ │ └── tests │ │ │ │ │ └── test_report_livemode.py │ │ │ ├── modify_userspace_for_livemode │ │ │ │ ├── actor.py │ │ │ │ ├── files │ │ │ │ │ ├── console.service │ │ │ │ │ ├── do-upgrade.sh │ │ │ │ │ ├── upgrade-strace.service │ │ │ │ │ └── upgrade.service │ │ │ │ ├── libraries │ │ │ │ │ └── prepareliveimage.py │ │ │ │ └── tests │ │ │ │ │ └── test_livemode_userspace_modifications.py │ │ │ └── removeliveimage │ │ │ │ ├── actor.py │ │ │ │ ├── libraries │ │ │ │ └── remove_live_image.py │ │ │ │ └── tests │ │ │ │ └── test_remove_live_image.py │ │ ├── loaddevicedriverdeprecationdata │ │ │ ├── actor.py │ │ │ ├── libraries │ │ │ │ └── deviceanddriverdeprecationdataload.py │ │ │ └── tests │ │ │ │ └── test_ddddload.py │ │ ├── luksscanner │ │ │ ├── actor.py │ │ │ ├── libraries │ │ │ │ ├── luksdump_parser.py │ │ │ │ └── luksscanner.py │ │ │ └── tests │ │ │ │ ├── files │ │ │ │ ├── luksDump_luks1.txt │ │ │ │ ├── luksDump_nvme0n1p3_luks1.txt │ │ │ │ ├── luksDump_nvme0n1p3_luks2.txt │ │ │ │ └── luksDump_nvme0n1p3_luks2_tokens.txt │ │ │ │ ├── test_luksdump_parser.py │ │ │ │ └── test_luksscaner.py │ │ ├── missinggpgkeysinhibitor │ │ │ ├── actor.py │ │ │ ├── libraries │ │ │ │ └── missinggpgkey.py │ │ │ └── tests │ │ │ │ ├── component_test_missinggpgkey.py │ │ │ │ └── unit_test_missinggpgkey.py │ │ ├── networkmanagerreadconfig │ │ │ ├── actor.py │ │ │ ├── libraries │ │ │ │ └── networkmanagerreadconfig.py │ │ │ └── tests │ │ │ │ ├── files │ │ │ │ ├── nm_cfg_file_error │ │ │ │ ├── nm_cfg_with_dhcp │ │ │ │ └── nm_cfg_without_dhcp │ │ │ │ └── unit_test_networkmanagerreadconfig.py │ │ ├── opensshconfigscanner │ │ │ ├── actor.py │ │ │ ├── libraries │ │ │ │ └── readopensshconfig.py │ │ │ └── tests │ │ │ │ └── test_readopensshconfig_opensshconfigscanner.py │ │ ├── opensshpermitrootlogincheck │ │ │ ├── actor.py │ │ │ ├── libraries │ │ │ │ └── opensshpermitrootlogincheck.py │ │ │ └── tests │ │ │ │ └── test_library_opensshpermitrootlogincheck.py │ │ ├── openssl │ │ │ ├── checkopensslconf │ │ │ │ ├── actor.py │ │ │ │ ├── libraries │ │ │ │ │ └── checkopensslconf.py │ │ │ │ └── tests │ │ │ │ │ └── unit_test_checkopensslconf.py │ │ │ ├── migrateopensslconf │ │ │ │ ├── actor.py │ │ │ │ ├── libraries │ │ │ │ │ └── migrateopensslconf.py │ │ │ │ └── tests │ │ │ │ │ └── unit_test_migrateopensslconf.py │ │ │ └── opensslconfigscanner │ │ │ │ ├── actor.py │ │ │ │ ├── libraries │ │ │ │ └── readconf.py │ │ │ │ └── tests │ │ │ │ └── test_opensslconfigscanner.py │ │ ├── pcidevicesscanner │ │ │ ├── Makefile │ │ │ ├── actor.py │ │ │ ├── libraries │ │ │ │ └── pcidevicesscanner.py │ │ │ └── tests │ │ │ │ └── test_pcidevicesscanner.py │ │ ├── persistentnetnames │ │ │ ├── actor.py │ │ │ └── tests │ │ │ │ └── test_persistentnetnames.py │ │ ├── persistentnetnamesconfig │ │ │ ├── actor.py │ │ │ ├── libraries │ │ │ │ └── persistentnetnamesconfig.py │ │ │ └── tests │ │ │ │ ├── files │ │ │ │ └── crashed_ifaces.json │ │ │ │ └── test_persistentnetnamesconfig.py │ │ ├── persistentnetnamesdisable │ │ │ ├── actor.py │ │ │ └── tests │ │ │ │ └── test_persistentnetnamesdisable.py │ │ ├── persistentnetnamesinitramfs │ │ │ ├── actor.py │ │ │ └── tests │ │ │ │ └── test_persistentnetnamesinitramfs.py │ │ ├── peseventsscanner │ │ │ ├── actor.py │ │ │ ├── libraries │ │ │ │ ├── pes_event_parsing.py │ │ │ │ ├── pes_events_scanner.py │ │ │ │ └── peseventsscanner_repomap.py │ │ │ └── tests │ │ │ │ ├── files │ │ │ │ ├── sample01.json │ │ │ │ ├── sample02.json │ │ │ │ ├── sample03.json │ │ │ │ └── sample04.json │ │ │ │ ├── test_event_parsing.py │ │ │ │ └── test_pes_event_scanner.py │ │ ├── preparepythonworkround │ │ │ ├── actor.py │ │ │ ├── libraries │ │ │ │ └── workaround.py │ │ │ └── tests │ │ │ │ └── test_preparepythonworkaround.py │ │ ├── removebootfiles │ │ │ ├── actor.py │ │ │ ├── libraries │ │ │ │ └── removebootfiles.py │ │ │ └── tests │ │ │ │ └── unit_test_removebootfiles.py │ │ ├── removeleftoverpackages │ │ │ ├── actor.py │ │ │ ├── libraries │ │ │ │ └── removeleftoverpackages.py │ │ │ └── tests │ │ │ │ └── test_removeleftoverpackages.py │ │ ├── removeobsoletegpgkeys │ │ │ ├── actor.py │ │ │ ├── libraries │ │ │ │ └── removeobsoleterpmgpgkeys.py │ │ │ └── tests │ │ │ │ └── test_removeobsoleterpmgpgkeys.py │ │ ├── removeresumeservice │ │ │ ├── actor.py │ │ │ └── tests │ │ │ │ └── test_removeresumeservice.py │ │ ├── removeupgradeartifacts │ │ │ ├── actor.py │ │ │ ├── libraries │ │ │ │ └── removeupgradeartifacts.py │ │ │ └── tests │ │ │ │ └── test_removeupgradeartifacts.py │ │ ├── removeupgradebootentry │ │ │ ├── actor.py │ │ │ ├── libraries │ │ │ │ └── removeupgradebootentry.py │ │ │ └── tests │ │ │ │ └── unit_test_removeupgradebootentry.py │ │ ├── reportleftoverpackages │ │ │ └── reportleftoverpackages │ │ │ │ ├── actor.py │ │ │ │ ├── libraries │ │ │ │ └── reportleftoverpackages.py │ │ │ │ └── tests │ │ │ │ └── test_reportleftoverpackages.py │ │ ├── reportsettargetrelease │ │ │ ├── actor.py │ │ │ ├── libraries │ │ │ │ └── reportsettargetrelease.py │ │ │ └── tests │ │ │ │ └── test_targetreleasereport_reportsettargetrelease.py │ │ ├── repositoriesblacklist │ │ │ ├── actor.py │ │ │ ├── libraries │ │ │ │ └── repositoriesblacklist.py │ │ │ └── tests │ │ │ │ └── test_repositoriesblacklist.py │ │ ├── repositoriesmapping │ │ │ ├── actor.py │ │ │ ├── libraries │ │ │ │ └── repositoriesmapping.py │ │ │ └── tests │ │ │ │ ├── files │ │ │ │ └── repomap_example.json │ │ │ │ └── unit_test_repositoriesmapping.py │ │ ├── rootscanner │ │ │ ├── actor.py │ │ │ ├── libraries │ │ │ │ └── rootscanner.py │ │ │ └── tests │ │ │ │ └── test_rootscanner.py │ │ ├── rpmscanner │ │ │ ├── actor.py │ │ │ ├── libraries │ │ │ │ └── rpmscanner.py │ │ │ └── tests │ │ │ │ └── test_rpmscanner.py │ │ ├── rpmtransactionconfigtaskscollector │ │ │ ├── actor.py │ │ │ ├── libraries │ │ │ │ └── rpmtransactionconfigtaskscollector.py │ │ │ └── tests │ │ │ │ └── test_load_tasks_rpmtransactionconfigtaskscollector.py │ │ ├── satellite_upgrade_services │ │ │ ├── actor.py │ │ │ └── tests │ │ │ │ └── unit_test_satellite_upgrade_services.py │ │ ├── satellite_upgrader │ │ │ ├── actor.py │ │ │ └── tests │ │ │ │ └── unit_test_satellite_upgrader.py │ │ ├── scan_default_initramfs │ │ │ ├── actor.py │ │ │ ├── libraries │ │ │ │ └── scan_default_initramfs.py │ │ │ └── tests │ │ │ │ └── test_scan_default_initramfs.py │ │ ├── scan_source_boot_loader │ │ │ ├── actor.py │ │ │ ├── libraries │ │ │ │ └── scan_source_boot_entry.py │ │ │ └── tests │ │ │ │ └── test_scan_source_boot_entry.py │ │ ├── scanclienablerepo │ │ │ ├── actor.py │ │ │ ├── libraries │ │ │ │ └── scanclienablerepo.py │ │ │ └── tests │ │ │ │ └── test_unit_scanclienablerepo.py │ │ ├── scancpu │ │ │ ├── actor.py │ │ │ ├── libraries │ │ │ │ └── scancpu.py │ │ │ └── tests │ │ │ │ ├── files │ │ │ │ ├── invalid │ │ │ │ ├── lscpu_aarch64 │ │ │ │ ├── lscpu_ppc64le │ │ │ │ ├── lscpu_s390x │ │ │ │ └── lscpu_x86_64 │ │ │ │ └── test_scancpu.py │ │ ├── scancryptopolicies │ │ │ ├── actor.py │ │ │ ├── libraries │ │ │ │ └── scancryptopolicies.py │ │ │ └── tests │ │ │ │ ├── component_test_scancryptopolicies.py │ │ │ │ └── unit_test_scancryptopolicies.py │ │ ├── scancustommodifications │ │ │ ├── actor.py │ │ │ ├── libraries │ │ │ │ └── scancustommodifications.py │ │ │ └── tests │ │ │ │ └── test_scancustommodifications.py │ │ ├── scancustomrepofile │ │ │ ├── actor.py │ │ │ ├── libraries │ │ │ │ └── scancustomrepofile.py │ │ │ └── tests │ │ │ │ └── test_scancustomrepofile.py │ │ ├── scandasd │ │ │ ├── actor.py │ │ │ ├── libraries │ │ │ │ └── scandasd.py │ │ │ └── tests │ │ │ │ └── unit_test_scandasd.py │ │ ├── scandnfpluginpath │ │ │ ├── actor.py │ │ │ ├── libraries │ │ │ │ └── scandnfpluginpath.py │ │ │ └── tests │ │ │ │ ├── files │ │ │ │ ├── dnf_config_incorrect_pluginpath │ │ │ │ ├── dnf_config_no_pluginpath │ │ │ │ └── dnf_config_with_pluginpath │ │ │ │ └── test_scandnfpluginpath.py │ │ ├── scandynamiclinkerconfiguration │ │ │ ├── actor.py │ │ │ ├── libraries │ │ │ │ └── scandynamiclinkerconfiguration.py │ │ │ └── tests │ │ │ │ └── test_scandynamiclinkerconfiguration.py │ │ ├── scanfilesfortargetuserspace │ │ │ ├── actor.py │ │ │ ├── libraries │ │ │ │ └── scanfilesfortargetuserspace.py │ │ │ └── tests │ │ │ │ └── test_scanfilesfortargetuserspace.py │ │ ├── scanfips │ │ │ ├── actor.py │ │ │ └── tests │ │ │ │ └── test_scanfips.py │ │ ├── scangrubconfig │ │ │ ├── actor.py │ │ │ ├── libraries │ │ │ │ └── scanner.py │ │ │ └── tests │ │ │ │ ├── files │ │ │ │ ├── corrupted_grubenv │ │ │ │ │ ├── grubenv.correct │ │ │ │ │ ├── grubenv.wrong1 │ │ │ │ │ └── grubenv.wrong2 │ │ │ │ └── error_detection │ │ │ │ │ ├── grub.correct │ │ │ │ │ ├── grub.correct_comment │ │ │ │ │ ├── grub.correct_puppet │ │ │ │ │ ├── grub.correct_trailing_space │ │ │ │ │ ├── grub.wrong │ │ │ │ │ └── grub.wrong1 │ │ │ │ └── test_scangrubconfig.py │ │ ├── scangrubdevice │ │ │ ├── actor.py │ │ │ └── tests │ │ │ │ └── test_scangrubdevice.py │ │ ├── scaninstalledtargetkernelversion │ │ │ ├── actor.py │ │ │ ├── libraries │ │ │ │ └── scankernel.py │ │ │ └── tests │ │ │ │ └── test_scaninstalledkernel_scaninstalledtargetkernelversion.py │ │ ├── scankernelcmdline │ │ │ ├── actor.py │ │ │ ├── libraries │ │ │ │ └── scankernelcmdline.py │ │ │ └── tests │ │ │ │ └── test_scankernelcmdline.py │ │ ├── scanmemory │ │ │ ├── actor.py │ │ │ ├── libraries │ │ │ │ └── scanmemory.py │ │ │ └── tests │ │ │ │ └── test_scanmemory.py │ │ ├── scanpkgmanager │ │ │ ├── actor.py │ │ │ ├── libraries │ │ │ │ ├── pluginscanner.py │ │ │ │ └── scanpkgmanager.py │ │ │ └── tests │ │ │ │ ├── files │ │ │ │ └── releasever │ │ │ │ ├── test_pluginscanner.py │ │ │ │ └── test_scanpkgmanager.py │ │ ├── scansaphana │ │ │ ├── actor.py │ │ │ ├── libraries │ │ │ │ └── scansaphana.py │ │ │ └── tests │ │ │ │ └── test_scansaphana.py │ │ ├── scansourcefiles │ │ │ ├── actor.py │ │ │ ├── libraries │ │ │ │ └── scansourcefiles.py │ │ │ └── tests │ │ │ │ └── unit_test_scansourcefiles.py │ │ ├── scansourcekernel │ │ │ ├── actor.py │ │ │ └── libraries │ │ │ │ └── scan_source_kernel.py │ │ ├── scansubscriptionmanagerinfo │ │ │ ├── actor.py │ │ │ ├── libraries │ │ │ │ └── scanrhsm.py │ │ │ └── tests │ │ │ │ └── test_scansubscriptionmanagementinfo.py │ │ ├── scantargetiso │ │ │ ├── actor.py │ │ │ ├── libraries │ │ │ │ └── scan_target_os_iso.py │ │ │ └── tests │ │ │ │ └── test_scan_target_iso.py │ │ ├── scanthirdpartytargetpythonmodules │ │ │ ├── actor.py │ │ │ ├── libraries │ │ │ │ └── scanthirdpartytargetpythonmodules.py │ │ │ └── tests │ │ │ │ └── test_scan_third_party_target_python_modules.py │ │ ├── scanzfcp │ │ │ ├── actor.py │ │ │ ├── libraries │ │ │ │ └── scanzfcp.py │ │ │ └── tests │ │ │ │ └── unit_test_scanzfcp.py │ │ ├── scheduleselinuxrelabeling │ │ │ ├── actor.py │ │ │ └── tests │ │ │ │ └── test_scheduleselinuxrelabeling.py │ │ ├── selinux │ │ │ ├── selinuxapplycustom │ │ │ │ ├── Makefile │ │ │ │ ├── actor.py │ │ │ │ ├── libraries │ │ │ │ │ └── selinuxapplycustom.py │ │ │ │ └── tests │ │ │ │ │ └── component_test_selinuxapplycustom.py │ │ │ ├── selinuxcontentscanner │ │ │ │ ├── Makefile │ │ │ │ ├── actor.py │ │ │ │ ├── libraries │ │ │ │ │ └── selinuxcontentscanner.py │ │ │ │ └── tests │ │ │ │ │ ├── component_test_selinuxcontentscanner.py │ │ │ │ │ ├── mock_modules │ │ │ │ │ ├── base_container.cil │ │ │ │ │ ├── compat.cil │ │ │ │ │ ├── mock1.cil │ │ │ │ │ ├── mock2.cil │ │ │ │ │ └── mock3.cil │ │ │ │ │ └── unit_test_selinuxcontentscanner.py │ │ │ └── selinuxprepare │ │ │ │ ├── Makefile │ │ │ │ ├── actor.py │ │ │ │ ├── libraries │ │ │ │ └── selinuxprepare.py │ │ │ │ └── tests │ │ │ │ ├── component_test_selinuxprepare.py │ │ │ │ ├── mock_modules │ │ │ │ ├── base_container.cil │ │ │ │ ├── compat.cil │ │ │ │ ├── mock1.cil │ │ │ │ ├── mock2.cil │ │ │ │ └── mock3.cil │ │ │ │ └── unit_test_selinuxprepare.py │ │ ├── setetcreleasever │ │ │ ├── actor.py │ │ │ ├── libraries │ │ │ │ └── setetcreleasever.py │ │ │ └── tests │ │ │ │ └── test_setetcreleasever.py │ │ ├── setpermissiveselinux │ │ │ ├── Makefile │ │ │ ├── actor.py │ │ │ ├── libraries │ │ │ │ └── setpermissiveselinux.py │ │ │ └── tests │ │ │ │ └── test_setpermissiveselinux.py │ │ ├── setuptargetrepos │ │ │ ├── actor.py │ │ │ ├── libraries │ │ │ │ ├── setuptargetrepos.py │ │ │ │ └── setuptargetrepos_repomap.py │ │ │ └── tests │ │ │ │ ├── test_repomapping.py │ │ │ │ └── test_setuptargetrepos.py │ │ ├── storagescanner │ │ │ ├── actor.py │ │ │ ├── libraries │ │ │ │ └── storagescanner.py │ │ │ └── tests │ │ │ │ ├── files │ │ │ │ ├── fstab │ │ │ │ ├── invalid_fstab │ │ │ │ ├── mounts │ │ │ │ └── partitions │ │ │ │ └── unit_test_storagescanner.py │ │ ├── systemd │ │ │ ├── checksystemdbrokensymlinks │ │ │ │ ├── actor.py │ │ │ │ ├── libraries │ │ │ │ │ └── checksystemdbrokensymlinks.py │ │ │ │ └── tests │ │ │ │ │ └── test_checksystemdbrokensymlinks.py │ │ │ ├── checksystemdservicetasks │ │ │ │ ├── actor.py │ │ │ │ ├── libraries │ │ │ │ │ └── checksystemdservicetasks.py │ │ │ │ └── tests │ │ │ │ │ └── test_checksystemdservicestasks.py │ │ │ ├── repairsystemdsymlinks │ │ │ │ ├── actor.py │ │ │ │ ├── libraries │ │ │ │ │ └── repairsystemdsymlinks.py │ │ │ │ └── tests │ │ │ │ │ └── test_repairsystemdsymlinks.py │ │ │ ├── scansystemdsource │ │ │ │ ├── actor.py │ │ │ │ ├── libraries │ │ │ │ │ └── scansystemdsource.py │ │ │ │ └── tests │ │ │ │ │ └── test_scansystemdsource.py │ │ │ ├── scansystemdtarget │ │ │ │ ├── actor.py │ │ │ │ ├── libraries │ │ │ │ │ └── scansystemdtarget.py │ │ │ │ └── tests │ │ │ │ │ └── test_scansystemdtarget.py │ │ │ ├── setsystemdservicesstates │ │ │ │ ├── actor.py │ │ │ │ ├── libraries │ │ │ │ │ └── setsystemdservicesstate.py │ │ │ │ └── tests │ │ │ │ │ └── test_setsystemdservicesstate.py │ │ │ └── transitionsystemdservicesstates │ │ │ │ ├── actor.py │ │ │ │ ├── libraries │ │ │ │ └── transitionsystemdservicesstates.py │ │ │ │ └── tests │ │ │ │ └── test_transitionsystemdservicesstates.py │ │ ├── systemfacts │ │ │ ├── Makefile │ │ │ ├── actor.py │ │ │ ├── libraries │ │ │ │ └── systemfacts.py │ │ │ └── tests │ │ │ │ ├── test_systemfacts.py │ │ │ │ ├── test_systemfacts_grub.py │ │ │ │ └── test_systemfacts_selinux.py │ │ ├── targetuserspacecreator │ │ │ ├── actor.py │ │ │ ├── libraries │ │ │ │ ├── constants.py │ │ │ │ └── userspacegen.py │ │ │ └── tests │ │ │ │ └── unit_test_targetuserspacecreator.py │ │ ├── transactionworkarounds │ │ │ ├── actor.py │ │ │ ├── libraries │ │ │ │ └── transactionworkarounds.py │ │ │ └── tests │ │ │ │ └── test_transaction_workarounds_transactionworkarounds.py │ │ ├── trustedgpgkeysscanner │ │ │ ├── actor.py │ │ │ ├── libraries │ │ │ │ └── trustedgpgkeys.py │ │ │ └── tests │ │ │ │ └── test_trustedgpgkeys.py │ │ ├── udev │ │ │ └── udevadminfo │ │ │ │ ├── actor.py │ │ │ │ ├── libraries │ │ │ │ └── udevadminfo.py │ │ │ │ └── tests │ │ │ │ ├── files │ │ │ │ └── udevadm_database │ │ │ │ └── test_udevadminfo.py │ │ ├── unsupportedupgradecheck │ │ │ └── actor.py │ │ ├── updategrubcore │ │ │ ├── actor.py │ │ │ ├── libraries │ │ │ │ └── updategrubcore.py │ │ │ └── tests │ │ │ │ └── test_updategrubcore.py │ │ ├── usedrepositoriesscanner │ │ │ ├── actor.py │ │ │ └── tests │ │ │ │ └── test_usedrepositoriesscanner.py │ │ ├── verifycheckresults │ │ │ ├── actor.py │ │ │ ├── libraries │ │ │ │ └── verifycheckresults.py │ │ │ └── tests │ │ │ │ └── unit_test_verifycheckresults.py │ │ ├── verifydialogs │ │ │ ├── actor.py │ │ │ └── libraries │ │ │ │ └── verifydialogs.py │ │ └── xfsinfoscanner │ │ │ ├── actor.py │ │ │ ├── libraries │ │ │ └── xfsinfoscanner.py │ │ │ └── tests │ │ │ └── unit_test_xfsinfoscanner.py │ ├── configs │ │ └── rhui.py │ ├── files │ │ ├── distro │ │ │ ├── almalinux │ │ │ │ ├── gpg-signatures.json │ │ │ │ └── rpm-gpg │ │ │ │ │ ├── 9 │ │ │ │ │ └── RPM-GPG-KEY-AlmaLinux-9 │ │ │ │ │ └── 10 │ │ │ │ │ └── RPM-GPG-KEY-AlmaLinux-10 │ │ │ ├── centos │ │ │ │ ├── gpg-signatures.json │ │ │ │ └── rpm-gpg │ │ │ │ │ ├── 9 │ │ │ │ │ ├── RPM-GPG-KEY-CentOS-SIG-Extras │ │ │ │ │ ├── RPM-GPG-KEY-CentOS-SIG-Extras-SHA512 │ │ │ │ │ └── RPM-GPG-KEY-centosofficial │ │ │ │ │ └── 10 │ │ │ │ │ ├── RPM-GPG-KEY-CentOS-SIG-Extras-SHA512 │ │ │ │ │ └── RPM-GPG-KEY-centosofficial-SHA256 │ │ │ └── rhel │ │ │ │ ├── gpg-signatures.json │ │ │ │ └── rpm-gpg │ │ │ │ ├── 8 │ │ │ │ └── RPM-GPG-KEY-redhat-release │ │ │ │ ├── 9 │ │ │ │ └── RPM-GPG-KEY-redhat-release │ │ │ │ ├── 10 │ │ │ │ └── RPM-GPG-KEY-redhat-release │ │ │ │ ├── 10beta │ │ │ │ └── RPM-GPG-KEY-redhat-release │ │ │ │ ├── 8beta │ │ │ │ └── RPM-GPG-KEY-redhat-beta │ │ │ │ └── 9beta │ │ │ │ └── RPM-GPG-KEY-redhat-beta │ │ ├── prod-certs │ │ │ ├── 10.0 │ │ │ │ ├── 279.pem │ │ │ │ ├── 362.pem │ │ │ │ ├── 363.pem │ │ │ │ ├── 419.pem │ │ │ │ ├── 433.pem │ │ │ │ ├── 479.pem │ │ │ │ ├── 486.pem │ │ │ │ └── 72.pem │ │ │ ├── 10.1 │ │ │ │ ├── 279.pem │ │ │ │ ├── 362.pem │ │ │ │ ├── 363.pem │ │ │ │ ├── 419.pem │ │ │ │ ├── 433.pem │ │ │ │ ├── 479.pem │ │ │ │ ├── 486.pem │ │ │ │ └── 72.pem │ │ │ ├── 10.2 │ │ │ │ ├── 279.pem │ │ │ │ ├── 362.pem │ │ │ │ ├── 363.pem │ │ │ │ ├── 419.pem │ │ │ │ ├── 433.pem │ │ │ │ ├── 479.pem │ │ │ │ ├── 486.pem │ │ │ │ └── 72.pem │ │ │ ├── 8.0 │ │ │ │ ├── 279.pem │ │ │ │ ├── 419.pem │ │ │ │ ├── 479.pem │ │ │ │ └── 72.pem │ │ │ ├── 8.1 │ │ │ │ ├── 279.pem │ │ │ │ ├── 419.pem │ │ │ │ ├── 479.pem │ │ │ │ └── 72.pem │ │ │ ├── 8.10 │ │ │ │ ├── 279.pem │ │ │ │ ├── 362.pem │ │ │ │ ├── 363.pem │ │ │ │ ├── 419.pem │ │ │ │ ├── 433.pem │ │ │ │ ├── 479.pem │ │ │ │ ├── 486.pem │ │ │ │ └── 72.pem │ │ │ ├── 8.2 │ │ │ │ ├── 279.pem │ │ │ │ ├── 419.pem │ │ │ │ ├── 479.pem │ │ │ │ └── 72.pem │ │ │ ├── 8.3 │ │ │ │ ├── 279.pem │ │ │ │ ├── 419.pem │ │ │ │ ├── 479.pem │ │ │ │ └── 72.pem │ │ │ ├── 8.4 │ │ │ │ ├── 279.pem │ │ │ │ ├── 419.pem │ │ │ │ ├── 479.pem │ │ │ │ └── 72.pem │ │ │ ├── 8.5 │ │ │ │ ├── 279.pem │ │ │ │ ├── 362.pem │ │ │ │ ├── 363.pem │ │ │ │ ├── 419.pem │ │ │ │ ├── 433.pem │ │ │ │ ├── 479.pem │ │ │ │ ├── 486.pem │ │ │ │ └── 72.pem │ │ │ ├── 8.6 │ │ │ │ ├── 279.pem │ │ │ │ ├── 362.pem │ │ │ │ ├── 363.pem │ │ │ │ ├── 419.pem │ │ │ │ ├── 433.pem │ │ │ │ ├── 479.pem │ │ │ │ ├── 486.pem │ │ │ │ └── 72.pem │ │ │ ├── 8.7 │ │ │ │ ├── 279.pem │ │ │ │ ├── 362.pem │ │ │ │ ├── 363.pem │ │ │ │ ├── 419.pem │ │ │ │ ├── 433.pem │ │ │ │ ├── 479.pem │ │ │ │ ├── 486.pem │ │ │ │ └── 72.pem │ │ │ ├── 8.8 │ │ │ │ ├── 279.pem │ │ │ │ ├── 362.pem │ │ │ │ ├── 363.pem │ │ │ │ ├── 419.pem │ │ │ │ ├── 433.pem │ │ │ │ ├── 479.pem │ │ │ │ ├── 486.pem │ │ │ │ └── 72.pem │ │ │ ├── 8.9 │ │ │ │ ├── 279.pem │ │ │ │ ├── 362.pem │ │ │ │ ├── 363.pem │ │ │ │ ├── 419.pem │ │ │ │ ├── 433.pem │ │ │ │ ├── 479.pem │ │ │ │ ├── 486.pem │ │ │ │ └── 72.pem │ │ │ ├── 9.0 │ │ │ │ ├── 279.pem │ │ │ │ ├── 362.pem │ │ │ │ ├── 363.pem │ │ │ │ ├── 419.pem │ │ │ │ ├── 433.pem │ │ │ │ ├── 479.pem │ │ │ │ ├── 486.pem │ │ │ │ └── 72.pem │ │ │ ├── 9.1 │ │ │ │ ├── 279.pem │ │ │ │ ├── 362.pem │ │ │ │ ├── 363.pem │ │ │ │ ├── 419.pem │ │ │ │ ├── 433.pem │ │ │ │ ├── 479.pem │ │ │ │ ├── 486.pem │ │ │ │ └── 72.pem │ │ │ ├── 9.2 │ │ │ │ ├── 279.pem │ │ │ │ ├── 362.pem │ │ │ │ ├── 363.pem │ │ │ │ ├── 419.pem │ │ │ │ ├── 433.pem │ │ │ │ ├── 479.pem │ │ │ │ ├── 486.pem │ │ │ │ └── 72.pem │ │ │ ├── 9.3 │ │ │ │ ├── 279.pem │ │ │ │ ├── 362.pem │ │ │ │ ├── 363.pem │ │ │ │ ├── 419.pem │ │ │ │ ├── 433.pem │ │ │ │ ├── 479.pem │ │ │ │ ├── 486.pem │ │ │ │ └── 72.pem │ │ │ ├── 9.4 │ │ │ │ ├── 279.pem │ │ │ │ ├── 362.pem │ │ │ │ ├── 363.pem │ │ │ │ ├── 419.pem │ │ │ │ ├── 433.pem │ │ │ │ ├── 479.pem │ │ │ │ ├── 486.pem │ │ │ │ └── 72.pem │ │ │ ├── 9.5 │ │ │ │ ├── 279.pem │ │ │ │ ├── 362.pem │ │ │ │ ├── 363.pem │ │ │ │ ├── 419.pem │ │ │ │ ├── 433.pem │ │ │ │ ├── 479.pem │ │ │ │ ├── 486.pem │ │ │ │ └── 72.pem │ │ │ ├── 9.6 │ │ │ │ ├── 279.pem │ │ │ │ ├── 362.pem │ │ │ │ ├── 363.pem │ │ │ │ ├── 419.pem │ │ │ │ ├── 433.pem │ │ │ │ ├── 479.pem │ │ │ │ ├── 486.pem │ │ │ │ └── 72.pem │ │ │ ├── 9.7 │ │ │ │ ├── 279.pem │ │ │ │ ├── 362.pem │ │ │ │ ├── 363.pem │ │ │ │ ├── 419.pem │ │ │ │ ├── 433.pem │ │ │ │ ├── 479.pem │ │ │ │ ├── 486.pem │ │ │ │ └── 72.pem │ │ │ └── 9.8 │ │ │ │ ├── 279.pem │ │ │ │ ├── 362.pem │ │ │ │ ├── 363.pem │ │ │ │ ├── 419.pem │ │ │ │ ├── 433.pem │ │ │ │ ├── 479.pem │ │ │ │ ├── 486.pem │ │ │ │ └── 72.pem │ │ ├── rhel_upgrade.py │ │ └── upgrade_paths.json │ ├── libraries │ │ ├── Makefile │ │ ├── config │ │ │ ├── __init__.py │ │ │ ├── architecture.py │ │ │ ├── mock_configs.py │ │ │ ├── tests │ │ │ │ ├── test_architecture.py │ │ │ │ ├── test_getenvvars.py │ │ │ │ └── test_version.py │ │ │ └── version.py │ │ ├── distro.py │ │ ├── dnfconfig.py │ │ ├── dnfplugin.py │ │ ├── efi_reboot_fix.py │ │ ├── fetch.py │ │ ├── gpg.py │ │ ├── grub.py │ │ ├── guards.py │ │ ├── kernel.py │ │ ├── mdraid.py │ │ ├── module.py │ │ ├── mounting.py │ │ ├── multipathutil.py │ │ ├── overlaygen.py │ │ ├── persistentnetnames.py │ │ ├── repofileutils.py │ │ ├── rhsm.py │ │ ├── rhui.py │ │ ├── rpms.py │ │ ├── systemd.py │ │ ├── tests │ │ │ ├── 00-test.preset │ │ │ ├── 01-test.preset │ │ │ ├── 05-invalid.preset │ │ │ ├── grub_invalid │ │ │ ├── grub_valid │ │ │ ├── panagrams │ │ │ ├── sample_repos.txt │ │ │ ├── test_distro.py │ │ │ ├── test_dnfplugin.py │ │ │ ├── test_gpg.py │ │ │ ├── test_grub.py │ │ │ ├── test_kernel_lib.py │ │ │ ├── test_mdraid.py │ │ │ ├── test_multipathutil.py │ │ │ ├── test_persistentnetnames_library.py │ │ │ ├── test_repofileutils.py │ │ │ ├── test_rhsm.py │ │ │ ├── test_rpms.py │ │ │ ├── test_systemd.py │ │ │ ├── test_systemd_files │ │ │ │ ├── abc.service │ │ │ │ ├── example.service │ │ │ │ ├── example.socket │ │ │ │ ├── extra.service │ │ │ │ ├── globbed-one.service │ │ │ │ ├── globbed-two.service │ │ │ │ ├── template2@.service │ │ │ │ └── template@.service │ │ │ ├── test_testutils.py │ │ │ └── test_utils_logging_handler.py │ │ ├── testutils.py │ │ └── utils.py │ ├── models │ │ ├── activekernelmodulesfacts.py │ │ ├── assets.py │ │ ├── bootcontent.py │ │ ├── cephinfo.py │ │ ├── cpuinfo.py │ │ ├── cryptopolicy.py │ │ ├── custommodifications.py │ │ ├── defaultgrubinfo.py │ │ ├── devicedriverdeprecationdata.py │ │ ├── dnfpluginpathdetected.py │ │ ├── dnfplugintask.py │ │ ├── dnfworkaround.py │ │ ├── dynamiclinker.py │ │ ├── efiinfo.py │ │ ├── fips.py │ │ ├── firewallsfacts.py │ │ ├── firmwarefacts.py │ │ ├── groupsfacts.py │ │ ├── grubcfgbios.py │ │ ├── grubconfigerror.py │ │ ├── grubenv.py │ │ ├── grubinfo.py │ │ ├── hybridimage.py │ │ ├── ifcfg.py │ │ ├── initramfs.py │ │ ├── installeddesktopsfacts.py │ │ ├── installedkernelversion.py │ │ ├── installedrpm.py │ │ ├── installedtargetkernelversion.py │ │ ├── ipainfo.py │ │ ├── ipuconfig.py │ │ ├── kernelcmdlineargs.py │ │ ├── leftoverpackages.py │ │ ├── livemode.py │ │ ├── luksdump.py │ │ ├── memoryinfo.py │ │ ├── module.py │ │ ├── networkmanagerconfig.py │ │ ├── opensshconfig.py │ │ ├── opensslconfig.py │ │ ├── packagemanagerinfo.py │ │ ├── pcidevices.py │ │ ├── persistentnetnamesfacts.py │ │ ├── repositoriesblacklisted.py │ │ ├── repositoriesfacts.py │ │ ├── repositoriesmap.py │ │ ├── repositoriessetuptasks.py │ │ ├── rhsminfo.py │ │ ├── rhuiinfo.py │ │ ├── rootdirectory.py │ │ ├── rpmtransactiontasks.py │ │ ├── saphanainfo.py │ │ ├── satellite.py │ │ ├── selinux.py │ │ ├── selinuxdecisions.py │ │ ├── selinuxfacts.py │ │ ├── skippedrepositories.py │ │ ├── source_boot_entry.py │ │ ├── storageinfo.py │ │ ├── sysctlvariablesfacts.py │ │ ├── systemd.py │ │ ├── targetrepositories.py │ │ ├── targetuserspace.py │ │ ├── thirdpartytagetpythonmodules.py │ │ ├── trackedfiles.py │ │ ├── transactioncompleted.py │ │ ├── trustedgpgkeys.py │ │ ├── udev.py │ │ ├── upgradeefientry.py │ │ ├── upgradeiso.py │ │ ├── usedrepositories.py │ │ ├── usersfacts.py │ │ ├── xfsinfo.py │ │ └── xfspresence.py │ ├── tags │ │ ├── applications.py │ │ ├── checks.py │ │ ├── download.py │ │ ├── facts.py │ │ ├── finalization.py │ │ ├── firstboot.py │ │ ├── initramstart.py │ │ ├── interimpreparation.py │ │ ├── ipu.py │ │ ├── latetests.py │ │ ├── preparation.py │ │ ├── report.py │ │ ├── rpmupgrade.py │ │ └── thirdpartyapplications.py │ ├── tools │ │ ├── importrpmgpgkeys │ │ └── removerpmgpgkeys │ ├── topics │ │ ├── bootprep.py │ │ ├── rhsm.py │ │ ├── sctpconfigtopic.py │ │ ├── systemfacts.py │ │ ├── targetuserspace.py │ │ └── transaction.py │ └── workflows │ │ └── inplace_upgrade.py │ ├── el8toel9 │ ├── .leapp │ │ ├── info │ │ └── leapp.conf │ ├── actors │ │ ├── addarmbootloaderworkaround │ │ │ ├── actor.py │ │ │ ├── files │ │ │ │ └── grub2_config_template │ │ │ ├── libraries │ │ │ │ └── addupgradebootloader.py │ │ │ └── tests │ │ │ │ └── test_addarmbootloaderworkaround.py │ │ ├── checkarmbootloader │ │ │ ├── actor.py │ │ │ ├── libraries │ │ │ │ └── checkarmbootloader.py │ │ │ └── tests │ │ │ │ └── test_checkarmbootloader.py │ │ ├── checkblacklistca │ │ │ ├── actor.py │ │ │ ├── libraries │ │ │ │ └── checkblacklistca.py │ │ │ └── tests │ │ │ │ └── component_test_checkblacklistca.py │ │ ├── checkblsgrubcfgonppc64 │ │ │ ├── actor.py │ │ │ ├── libraries │ │ │ │ └── blsgrubcfgonppc64.py │ │ │ └── tests │ │ │ │ └── test_checkblsgrubcfgonppc64.py │ │ ├── checkcustomnetworkscripts │ │ │ ├── actor.py │ │ │ ├── libraries │ │ │ │ └── customnetworkscripts.py │ │ │ └── tests │ │ │ │ └── unit_test_customnetworkscripts.py │ │ ├── checkdeprecatedrpmsignature │ │ │ ├── actor.py │ │ │ ├── libraries │ │ │ │ └── checkdeprecatedrpmsignature.py │ │ │ └── tests │ │ │ │ └── unit_test_checkdeprecatedrpmsignature.py │ │ ├── checkifcfg │ │ │ ├── actor.py │ │ │ ├── libraries │ │ │ │ └── checkifcfg_ifcfg.py │ │ │ └── tests │ │ │ │ └── unit_test_ifcfg.py │ │ ├── checkvdo │ │ │ ├── actor.py │ │ │ ├── libraries │ │ │ │ └── checkvdo.py │ │ │ └── tests │ │ │ │ └── unit_test_checkvdo.py │ │ ├── cloud │ │ │ ├── checkvalidgrubcfghybrid │ │ │ │ ├── actor.py │ │ │ │ ├── libraries │ │ │ │ │ └── checkvalidgrubcfghybrid.py │ │ │ │ └── tests │ │ │ │ │ └── test_checkvalidgrubcfghybrid.py │ │ │ └── ensurevalidgrubcfghybrid │ │ │ │ ├── actor.py │ │ │ │ ├── libraries │ │ │ │ └── ensurevalidgrubcfghybrid.py │ │ │ │ └── tests │ │ │ │ ├── files │ │ │ │ ├── invalid_grub.cfg │ │ │ │ └── valid_grub.cfg │ │ │ │ └── test_ensurevalidgrubcfghybrid.py │ │ ├── dotnet │ │ │ ├── actor.py │ │ │ └── tests │ │ │ │ └── test_dotnet.py │ │ ├── emit_net_naming_scheme │ │ │ ├── actor.py │ │ │ ├── libraries │ │ │ │ └── emit_net_naming.py │ │ │ └── tests │ │ │ │ └── test_emit_net_naming_scheme.py │ │ ├── firewalldcheckallowzonedrifting │ │ │ ├── actor.py │ │ │ └── tests │ │ │ │ └── component_test_firewalldcheckallowzonedrifting.py │ │ ├── firewalldcheckservicetftpclient │ │ │ ├── actor.py │ │ │ └── tests │ │ │ │ └── component_test_firewalldcollectusedobjectnames.py │ │ ├── firewalldcollectglobalconfig │ │ │ ├── actor.py │ │ │ └── libraries │ │ │ │ └── private_firewalldcollectglobalconfig.py │ │ ├── firewalldcollectusedobjectnames │ │ │ ├── actor.py │ │ │ ├── libraries │ │ │ │ └── private_firewalldcollectusedobjectnames.py │ │ │ └── tests │ │ │ │ └── unit_test_firewalldcollectusedobjectnames.py │ │ ├── grub2mkconfigonppc64 │ │ │ ├── actor.py │ │ │ ├── libraries │ │ │ │ └── grub2mkconfigonppc64.py │ │ │ └── tests │ │ │ │ └── test_grub2mkconfigonppc64.py │ │ ├── mariadbcheck │ │ │ ├── actor.py │ │ │ ├── libraries │ │ │ │ └── mariadbcheck.py │ │ │ └── tests │ │ │ │ └── test_mariadbcheck.py │ │ ├── migrateblacklistca │ │ │ ├── actor.py │ │ │ ├── libraries │ │ │ │ └── migrateblacklistca.py │ │ │ └── tests │ │ │ │ └── unit_test_migrateblacklistca.py │ │ ├── multipathconfcheck │ │ │ ├── actor.py │ │ │ ├── libraries │ │ │ │ └── multipathconfcheck.py │ │ │ └── tests │ │ │ │ └── test_multipath_conf_check_8to9.py │ │ ├── multipathconfread │ │ │ ├── actor.py │ │ │ ├── libraries │ │ │ │ └── multipathconfread.py │ │ │ └── tests │ │ │ │ ├── files │ │ │ │ ├── all_the_things.conf │ │ │ │ ├── allow_usb.conf │ │ │ │ ├── complicated.conf │ │ │ │ ├── conf1.d │ │ │ │ │ ├── empty.conf │ │ │ │ │ └── nothing_important.conf │ │ │ │ ├── conf2.d │ │ │ │ │ └── all_true.conf │ │ │ │ ├── conf3.d │ │ │ │ │ └── README │ │ │ │ ├── converted_the_things.conf │ │ │ │ ├── default_rhel8.conf │ │ │ │ ├── empty.conf │ │ │ │ ├── empty_dir.conf │ │ │ │ ├── missing_dir.conf │ │ │ │ ├── no_defaults.conf │ │ │ │ ├── no_foreign.conf │ │ │ │ ├── not_set_dir.conf │ │ │ │ ├── set_in_dir.conf │ │ │ │ └── two_defaults.conf │ │ │ │ └── test_multipath_conf_read_8to9.py │ │ ├── multipathconfupdate │ │ │ ├── actor.py │ │ │ ├── libraries │ │ │ │ └── multipathconfupdate.py │ │ │ └── tests │ │ │ │ ├── files │ │ │ │ ├── after │ │ │ │ │ ├── all_the_things.conf │ │ │ │ │ ├── allow_usb.conf │ │ │ │ │ ├── complicated.conf │ │ │ │ │ ├── conf2.d │ │ │ │ │ │ └── all_true.conf │ │ │ │ │ ├── default_rhel8.conf │ │ │ │ │ ├── empty.conf │ │ │ │ │ ├── empty_dir.conf │ │ │ │ │ ├── missing_dir.conf │ │ │ │ │ ├── no_defaults.conf │ │ │ │ │ ├── no_foreign.conf │ │ │ │ │ ├── not_set_dir.conf │ │ │ │ │ └── two_defaults.conf │ │ │ │ └── before │ │ │ │ │ ├── all_the_things.conf │ │ │ │ │ ├── allow_usb.conf │ │ │ │ │ ├── complicated.conf │ │ │ │ │ ├── conf1.d │ │ │ │ │ ├── empty.conf │ │ │ │ │ └── nothing_important.conf │ │ │ │ │ ├── conf2.d │ │ │ │ │ └── all_true.conf │ │ │ │ │ ├── conf3.d │ │ │ │ │ └── README │ │ │ │ │ ├── converted_the_things.conf │ │ │ │ │ ├── default_rhel8.conf │ │ │ │ │ ├── empty.conf │ │ │ │ │ ├── empty_dir.conf │ │ │ │ │ ├── missing_dir.conf │ │ │ │ │ ├── no_defaults.conf │ │ │ │ │ ├── no_foreign.conf │ │ │ │ │ ├── not_set_dir.conf │ │ │ │ │ ├── set_in_dir.conf │ │ │ │ │ └── two_defaults.conf │ │ │ │ └── test_multipath_conf_update_8to9.py │ │ ├── mysqlcheck │ │ │ ├── actor.py │ │ │ ├── libraries │ │ │ │ └── mysqlcheck.py │ │ │ └── tests │ │ │ │ └── test_mysqlcheck.py │ │ ├── networkdeprecations │ │ │ ├── actor.py │ │ │ ├── libraries │ │ │ │ └── networkdeprecations.py │ │ │ └── tests │ │ │ │ └── unit_test_networkdeprecations.py │ │ ├── networkmanagerconnectionscanner │ │ │ ├── actor.py │ │ │ ├── libraries │ │ │ │ └── networkmanagerconnectionscanner.py │ │ │ └── tests │ │ │ │ └── unit_test_networkmanagerconnectionscanner.py │ │ ├── nischeck │ │ │ ├── actor.py │ │ │ ├── libraries │ │ │ │ └── nischeck.py │ │ │ └── tests │ │ │ │ └── test_nischeck.py │ │ ├── nisscanner │ │ │ ├── actor.py │ │ │ ├── libraries │ │ │ │ └── nisscan.py │ │ │ └── tests │ │ │ │ └── test_nisscan.py │ │ ├── nvidiaproprietarydriver │ │ │ ├── actor.py │ │ │ └── tests │ │ │ │ └── test_nvidiadriver.py │ │ ├── opensshdropindirectory │ │ │ ├── actor.py │ │ │ ├── libraries │ │ │ │ └── opensshdropindirectory.py │ │ │ └── tests │ │ │ │ └── test_opensshdropindirectory_prepend.py │ │ ├── opensshdropindirectorycheck │ │ │ └── actor.py │ │ ├── opensshsubsystemsftp │ │ │ ├── actor.py │ │ │ ├── libraries │ │ │ │ └── opensshsubsystemsftp.py │ │ │ └── tests │ │ │ │ └── test_opensshsubsystemsftp.py │ │ ├── opensslconfigcheck │ │ │ ├── actor.py │ │ │ ├── libraries │ │ │ │ └── opensslconfigcheck.py │ │ │ └── tests │ │ │ │ ├── component_test_opensslconfigcheck.py │ │ │ │ └── test_reachable.py │ │ ├── opensslproviders │ │ │ ├── actor.py │ │ │ ├── libraries │ │ │ │ └── add_provider.py │ │ │ └── tests │ │ │ │ └── test_add_provider.py │ │ ├── postgresqlcheck │ │ │ ├── actor.py │ │ │ ├── libraries │ │ │ │ └── postgresqlcheck.py │ │ │ └── tests │ │ │ │ └── test_postgresqlcheck.py │ │ ├── pythonthreetmpworkaround │ │ │ └── actor.py │ │ ├── registerrubyirbadjustment │ │ │ ├── actor.py │ │ │ └── tests │ │ │ │ └── test_register_ruby_irb_adjustments.py │ │ ├── removeupgradeefientry │ │ │ ├── actor.py │ │ │ ├── libraries │ │ │ │ └── removeupgradeefientry.py │ │ │ └── tests │ │ │ │ └── test_removeupgradeefientry.py │ │ ├── rocecheck │ │ │ ├── actor.py │ │ │ ├── libraries │ │ │ │ └── rocecheck.py │ │ │ └── tests │ │ │ │ └── unit_test_rocecheck.py │ │ ├── rocescanner │ │ │ ├── actor.py │ │ │ ├── libraries │ │ │ │ └── rocescanner.py │ │ │ └── tests │ │ │ │ └── unit_test_rocescanner.py │ │ ├── satellite_upgrade_facts │ │ │ ├── actor.py │ │ │ └── tests │ │ │ │ └── unit_test_satellite_upgrade_facts.py │ │ ├── scanblacklistca │ │ │ ├── actor.py │ │ │ ├── libraries │ │ │ │ └── scanblacklistca.py │ │ │ └── tests │ │ │ │ ├── files │ │ │ │ └── badca.cert │ │ │ │ └── unit_test_scanblacklistca.py │ │ ├── sssdcheck │ │ │ └── actor.py │ │ ├── sssdfacts │ │ │ ├── actor.py │ │ │ ├── libraries │ │ │ │ └── sssdfacts8to9.py │ │ │ └── tests │ │ │ │ └── unit_test_sssdfacts_8to9.py │ │ ├── targetuserspacecryptopolicies │ │ │ ├── actor.py │ │ │ └── libraries │ │ │ │ └── targetuserspacecryptopolicies.py │ │ ├── vdoconversionscanner │ │ │ ├── actor.py │ │ │ ├── libraries │ │ │ │ └── vdoconversionscanner.py │ │ │ └── tests │ │ │ │ └── unit_test_vdoconversionscanner.py │ │ ├── xorgdrvcheck │ │ │ ├── actor.py │ │ │ └── tests │ │ │ │ └── test_xorgdrvcheck.py │ │ └── xorgdrvfact │ │ │ ├── actor.py │ │ │ ├── libraries │ │ │ └── xorgdriverlib.py │ │ │ └── tests │ │ │ ├── files │ │ │ ├── journalctl-xorg-intel │ │ │ ├── journalctl-xorg-qxl │ │ │ └── journalctl-xorg-without-qxl │ │ │ └── test_xorgdrvfact.py │ ├── files │ │ └── bundled-rpms │ │ │ └── .gitkeep │ ├── libraries │ │ └── .gitkeep │ ├── models │ │ ├── .gitkeep │ │ ├── blacklistca.py │ │ ├── blacklisterror.py │ │ ├── firewalldglobalconfig.py │ │ ├── firewalldusedobjectnames.py │ │ ├── multipathconffacts.py │ │ ├── networkmanagerconnection.py │ │ ├── nis.py │ │ ├── roce.py │ │ ├── sssd.py │ │ ├── vdoconversioninfo.py │ │ └── xorgdrv.py │ └── tools │ │ ├── .gitkeep │ │ └── handlerubyirbsymlink │ └── el9toel10 │ ├── .leapp │ ├── info │ └── leapp.conf │ ├── actors │ ├── check_default_initramfs │ │ ├── actor.py │ │ ├── libraries │ │ │ └── check_default_initramfs.py │ │ └── tests │ │ │ └── test_check_default_initramfs.py │ ├── checkoldxfs │ │ ├── actor.py │ │ ├── libraries │ │ │ └── checkoldxfs.py │ │ └── tests │ │ │ └── test_checkoldxfs.py │ ├── inhibitcgroupsv1 │ │ ├── actor.py │ │ ├── libraries │ │ │ └── inhibitcgroupsv1.py │ │ └── tests │ │ │ └── test_inhibitcgroupsv1.py │ ├── libdbcheck │ │ ├── actor.py │ │ ├── libraries │ │ │ └── libdbcheck.py │ │ └── tests │ │ │ └── test_libdbcheck.py │ ├── mariadbcheck │ │ ├── actor.py │ │ ├── libraries │ │ │ └── mariadbcheck.py │ │ └── tests │ │ │ └── test_mariadbcheck.py │ ├── migraterpmdb │ │ ├── actor.py │ │ └── tests │ │ │ └── test_migraterpmdb.py │ ├── mysql │ │ ├── checkmysql │ │ │ ├── actor.py │ │ │ ├── libraries │ │ │ │ └── checkmysql.py │ │ │ └── tests │ │ │ │ └── test_checkmysql.py │ │ └── scanmysql │ │ │ ├── actor.py │ │ │ ├── libraries │ │ │ └── scanmysql.py │ │ │ └── tests │ │ │ ├── config_invalid.txt │ │ │ ├── config_valid.txt │ │ │ ├── service_invalid.txt │ │ │ ├── sterr_invalid.txt │ │ │ └── test_mysqlcheck.py │ ├── networkdeprecations │ │ ├── actor.py │ │ └── tests │ │ │ └── unit_test_networkdeprecations_9to10.py │ ├── nonscarhsm │ │ ├── actor.py │ │ └── libraries │ │ │ └── nonscarhsm.py │ ├── opensslenginescheck │ │ ├── actor.py │ │ ├── libraries │ │ │ └── opensslenginescheck.py │ │ └── tests │ │ │ └── component_test_opensslenginescheck.py │ ├── pamuserdb │ │ ├── checkpamuserdb │ │ │ ├── actor.py │ │ │ ├── libraries │ │ │ │ └── checkpamuserdb.py │ │ │ └── tests │ │ │ │ └── test_checkpamuserdb.py │ │ ├── convertpamuserdb │ │ │ ├── actor.py │ │ │ ├── libraries │ │ │ │ └── convertpamuserdb.py │ │ │ └── tests │ │ │ │ └── test_convertpamuserdb.py │ │ ├── removeoldpamuserdb │ │ │ ├── actor.py │ │ │ ├── libraries │ │ │ │ └── removeoldpamuserdb.py │ │ │ └── tests │ │ │ │ └── test_removeoldpamuserdb.py │ │ └── scanpamuserdb │ │ │ ├── actor.py │ │ │ ├── libraries │ │ │ └── scanpamuserdb.py │ │ │ └── tests │ │ │ ├── files │ │ │ ├── pam_userdb_basic │ │ │ ├── pam_userdb_complete │ │ │ └── pam_userdb_missing │ │ │ └── test_scanpamuserdb.py │ ├── postgresqlcheck │ │ ├── actor.py │ │ ├── libraries │ │ │ └── postgresqlcheck.py │ │ └── tests │ │ │ └── test_postgresqlcheck.py │ ├── registerrubyirbadjustment │ │ ├── actor.py │ │ └── tests │ │ │ └── test_register_ruby_irb_adjustments.py │ └── sssd │ │ ├── sssdchecks │ │ ├── actor.py │ │ ├── libraries │ │ │ └── sssdchecks.py │ │ └── tests │ │ │ └── component_test_sssdchecks.py │ │ ├── sssdfacts │ │ ├── actor.py │ │ ├── libraries │ │ │ └── sssdfacts.py │ │ └── tests │ │ │ ├── files │ │ │ ├── ssh_proxy_disabled.conf │ │ │ ├── ssh_proxy_enabled.conf │ │ │ ├── ssh_proxy_not_present.conf │ │ │ ├── sssd_service_disabled.conf │ │ │ ├── sssd_service_enabled.conf │ │ │ ├── sssd_service_not_present.conf │ │ │ └── subdir │ │ │ │ └── sub_ssh_proxy_enabled.conf │ │ │ └── unit_test_sssdfacts.py │ │ └── sssdupdate │ │ ├── actor.py │ │ ├── libraries │ │ └── sssdupdate.py │ │ └── tests │ │ └── unit_test_sssdupdate.py │ ├── files │ └── bundled-rpms │ │ └── .gitkeep │ ├── libraries │ └── .gitkeep │ ├── models │ ├── .gitkeep │ ├── mysql.py │ ├── pamuserdblocation.py │ └── sssd_knownhostsproxy.py │ └── tools │ ├── handlerubyirbsymlink │ └── migraterpmdb ├── requirements.txt ├── setup.cfg └── utils ├── actor_path.py ├── container-builds ├── Containerfile.el8 └── Containerfile.el9 ├── container-tests ├── Containerfile.el8 ├── Containerfile.el9 ├── Containerfile.f42 └── ci │ ├── Containerfile.el8 │ ├── Containerfile.el8-lint │ ├── Containerfile.el9 │ └── Containerfile.el9-lint ├── dashboard-json-dump.py ├── find_actors.py ├── get_latest_copr_build ├── ibdmp-decode ├── install_actor_deps.py ├── install_commands.sh ├── library_path.py └── update_dashboard.sh /.copr/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/.copr/Makefile -------------------------------------------------------------------------------- /.copr/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/.copr/build.sh -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/.github/renovate.json -------------------------------------------------------------------------------- /.github/workflows/codespell.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/.github/workflows/codespell.yml -------------------------------------------------------------------------------- /.github/workflows/differential-shellcheck.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/.github/workflows/differential-shellcheck.yml -------------------------------------------------------------------------------- /.github/workflows/pr-welcome-msg.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/.github/workflows/pr-welcome-msg.yml -------------------------------------------------------------------------------- /.github/workflows/unit-tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/.github/workflows/unit-tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/.gitignore -------------------------------------------------------------------------------- /.isort.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/.isort.cfg -------------------------------------------------------------------------------- /.packit.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/.packit.yaml -------------------------------------------------------------------------------- /.pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/.pylintrc -------------------------------------------------------------------------------- /.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/.readthedocs.yaml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/.travis.yml -------------------------------------------------------------------------------- /.travis/githubio-data-idrsa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/.travis/githubio-data-idrsa -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/README.md -------------------------------------------------------------------------------- /commands/answer/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/commands/answer/__init__.py -------------------------------------------------------------------------------- /commands/command_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/commands/command_utils.py -------------------------------------------------------------------------------- /commands/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/commands/config.py -------------------------------------------------------------------------------- /commands/list_runs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/commands/list_runs/__init__.py -------------------------------------------------------------------------------- /commands/preupgrade/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/commands/preupgrade/__init__.py -------------------------------------------------------------------------------- /commands/rerun/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/commands/rerun/__init__.py -------------------------------------------------------------------------------- /commands/tests/test_upgrade_paths.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/commands/tests/test_upgrade_paths.py -------------------------------------------------------------------------------- /commands/upgrade/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/commands/upgrade/__init__.py -------------------------------------------------------------------------------- /commands/upgrade/breadcrumbs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/commands/upgrade/breadcrumbs.py -------------------------------------------------------------------------------- /commands/upgrade/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/commands/upgrade/util.py -------------------------------------------------------------------------------- /conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/conftest.py -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/requirements-docs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/docs/requirements-docs.txt -------------------------------------------------------------------------------- /docs/source/_static/css/asciinema-player.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/docs/source/_static/css/asciinema-player.css -------------------------------------------------------------------------------- /docs/source/_static/css/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/docs/source/_static/css/custom.css -------------------------------------------------------------------------------- /docs/source/_static/fonts/fonts/PowerlineSymbols.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/docs/source/_static/fonts/fonts/PowerlineSymbols.otf -------------------------------------------------------------------------------- /docs/source/_static/images/inplace-upgrade-workflow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/docs/source/_static/images/inplace-upgrade-workflow.svg -------------------------------------------------------------------------------- /docs/source/_static/js/asciinema-player.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/docs/source/_static/js/asciinema-player.js -------------------------------------------------------------------------------- /docs/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/docs/source/conf.py -------------------------------------------------------------------------------- /docs/source/configuring-ipu/envars.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/docs/source/configuring-ipu/envars.md -------------------------------------------------------------------------------- /docs/source/configuring-ipu/experimental-features/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/docs/source/configuring-ipu/experimental-features/index.rst -------------------------------------------------------------------------------- /docs/source/configuring-ipu/experimental-features/livemode.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/docs/source/configuring-ipu/experimental-features/livemode.md -------------------------------------------------------------------------------- /docs/source/configuring-ipu/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/docs/source/configuring-ipu/index.rst -------------------------------------------------------------------------------- /docs/source/contributing/coding-guidelines.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/docs/source/contributing/coding-guidelines.md -------------------------------------------------------------------------------- /docs/source/contributing/community-upgrades.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/docs/source/contributing/community-upgrades.md -------------------------------------------------------------------------------- /docs/source/contributing/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/docs/source/contributing/index.rst -------------------------------------------------------------------------------- /docs/source/contributing/pr-guidelines.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/docs/source/contributing/pr-guidelines.md -------------------------------------------------------------------------------- /docs/source/faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/docs/source/faq.md -------------------------------------------------------------------------------- /docs/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/docs/source/index.rst -------------------------------------------------------------------------------- /docs/source/installation-and-building.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/docs/source/installation-and-building.md -------------------------------------------------------------------------------- /docs/source/libraries-and-api/deprecations-list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/docs/source/libraries-and-api/deprecations-list.md -------------------------------------------------------------------------------- /docs/source/libraries-and-api/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/docs/source/libraries-and-api/index.rst -------------------------------------------------------------------------------- /docs/source/project-structure/dddd.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/docs/source/project-structure/dddd.md -------------------------------------------------------------------------------- /docs/source/project-structure/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/docs/source/project-structure/index.rst -------------------------------------------------------------------------------- /docs/source/project-structure/leapp-data.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/docs/source/project-structure/leapp-data.md -------------------------------------------------------------------------------- /docs/source/project-structure/pes-events.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/docs/source/project-structure/pes-events.md -------------------------------------------------------------------------------- /docs/source/project-structure/repomap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/docs/source/project-structure/repomap.md -------------------------------------------------------------------------------- /docs/source/tutorials/configurable-actors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/docs/source/tutorials/configurable-actors.md -------------------------------------------------------------------------------- /docs/source/tutorials/custom-content.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/docs/source/tutorials/custom-content.md -------------------------------------------------------------------------------- /docs/source/tutorials/dealing-with-dependencies.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/docs/source/tutorials/dealing-with-dependencies.md -------------------------------------------------------------------------------- /docs/source/tutorials/howto-first-actor-upgrade.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/docs/source/tutorials/howto-first-actor-upgrade.md -------------------------------------------------------------------------------- /docs/source/tutorials/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/docs/source/tutorials/index.rst -------------------------------------------------------------------------------- /docs/source/tutorials/setup-devel-env.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/docs/source/tutorials/setup-devel-env.md -------------------------------------------------------------------------------- /docs/source/tutorials/templates/add-kernel-driver.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/docs/source/tutorials/templates/add-kernel-driver.md -------------------------------------------------------------------------------- /docs/source/tutorials/templates/execute-custom-script.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/docs/source/tutorials/templates/execute-custom-script.md -------------------------------------------------------------------------------- /docs/source/tutorials/templates/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/docs/source/tutorials/templates/index.rst -------------------------------------------------------------------------------- /docs/source/tutorials/troubleshooting-debugging.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/docs/source/tutorials/troubleshooting-debugging.md -------------------------------------------------------------------------------- /docs/source/upgrade-architecture-and-workflow/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/docs/source/upgrade-architecture-and-workflow/index.rst -------------------------------------------------------------------------------- /docs/source/upgrade-architecture-and-workflow/phases-overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/docs/source/upgrade-architecture-and-workflow/phases-overview.md -------------------------------------------------------------------------------- /docs/source/upgrade-architecture-and-workflow/target-userspace-creator.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/docs/source/upgrade-architecture-and-workflow/target-userspace-creator.md -------------------------------------------------------------------------------- /etc/fapolicyd/rules.d/31-leapp-repository.rules: -------------------------------------------------------------------------------- 1 | allow perm=any all : dir=/var/lib/leapp/ 2 | 3 | -------------------------------------------------------------------------------- /etc/leapp/actor_conf.d/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /etc/leapp/files/device_driver_deprecation_data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/etc/leapp/files/device_driver_deprecation_data.json -------------------------------------------------------------------------------- /etc/leapp/files/pes-events.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/etc/leapp/files/pes-events.json -------------------------------------------------------------------------------- /etc/leapp/files/repomap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/etc/leapp/files/repomap.json -------------------------------------------------------------------------------- /etc/leapp/transaction/to_install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/etc/leapp/transaction/to_install -------------------------------------------------------------------------------- /etc/leapp/transaction/to_keep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/etc/leapp/transaction/to_keep -------------------------------------------------------------------------------- /etc/leapp/transaction/to_remove: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/etc/leapp/transaction/to_remove -------------------------------------------------------------------------------- /packaging/leapp-repository.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/packaging/leapp-repository.spec -------------------------------------------------------------------------------- /packaging/other_specs/leapp-el7toel8-deps.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/packaging/other_specs/leapp-el7toel8-deps.spec -------------------------------------------------------------------------------- /pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/pytest.ini -------------------------------------------------------------------------------- /repos/common/.leapp/info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/common/.leapp/info -------------------------------------------------------------------------------- /repos/common/.leapp/leapp.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/common/.leapp/leapp.conf -------------------------------------------------------------------------------- /repos/common/topics/systeminfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/common/topics/systeminfo.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/.leapp/info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/.leapp/info -------------------------------------------------------------------------------- /repos/system_upgrade/common/.leapp/leapp.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/.leapp/leapp.conf -------------------------------------------------------------------------------- /repos/system_upgrade/common/actors/addupgradebootentry/actor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/actors/addupgradebootentry/actor.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/actors/adjustlocalrepos/actor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/actors/adjustlocalrepos/actor.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/actors/applycustomdnfconf/actor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/actors/applycustomdnfconf/actor.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/actors/applytransactionworkarounds/actor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/actors/applytransactionworkarounds/actor.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/actors/baculacheck/actor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/actors/baculacheck/actor.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/actors/baculacheck/libraries/baculacheck.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/actors/baculacheck/libraries/baculacheck.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/actors/baculacheck/tests/test_baculacheck.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/actors/baculacheck/tests/test_baculacheck.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/actors/biosdevname/actor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/actors/biosdevname/actor.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/actors/biosdevname/libraries/biosdevname.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/actors/biosdevname/libraries/biosdevname.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/actors/biosdevname/tests/test_biosdevname.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/actors/biosdevname/tests/test_biosdevname.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/actors/cephvolumescan/actor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/actors/cephvolumescan/actor.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/actors/checkbootavailspace/actor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/actors/checkbootavailspace/actor.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/actors/checkcifs/actor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/actors/checkcifs/actor.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/actors/checkcifs/libraries/checkcifs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/actors/checkcifs/libraries/checkcifs.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/actors/checkcifs/tests/test_checkcifs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/actors/checkcifs/tests/test_checkcifs.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/actors/checkconsumedassets/actor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/actors/checkconsumedassets/actor.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/actors/checkcustommodifications/actor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/actors/checkcustommodifications/actor.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/actors/checkdnfpluginpath/actor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/actors/checkdnfpluginpath/actor.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/actors/checketcreleasever/actor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/actors/checketcreleasever/actor.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/actors/checkfips/actor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/actors/checkfips/actor.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/actors/checkfips/tests/test_checkfips.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/actors/checkfips/tests/test_checkfips.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/actors/checkfstabmountorder/actor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/actors/checkfstabmountorder/actor.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/actors/checkgrubcore/actor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/actors/checkgrubcore/actor.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/actors/checkinsightsautoregister/actor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/actors/checkinsightsautoregister/actor.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/actors/checkipaserver/actor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/actors/checkipaserver/actor.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/actors/checkleftoverpackages/actor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/actors/checkleftoverpackages/actor.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/actors/checkluks/actor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/actors/checkluks/actor.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/actors/checkluks/libraries/checkluks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/actors/checkluks/libraries/checkluks.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/actors/checkluks/tests/test_checkluks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/actors/checkluks/tests/test_checkluks.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/actors/checkmemory/actor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/actors/checkmemory/actor.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/actors/checkmemory/libraries/checkmemory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/actors/checkmemory/libraries/checkmemory.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/actors/checkmemory/tests/test_checkmemory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/actors/checkmemory/tests/test_checkmemory.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/actors/checkmicroarchitecture/actor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/actors/checkmicroarchitecture/actor.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/actors/checkmountoptions/actor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/actors/checkmountoptions/actor.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/actors/checknfs/actor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/actors/checknfs/actor.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/actors/checknfs/tests/test_checknfs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/actors/checknfs/tests/test_checknfs.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/actors/checkosrelease/actor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/actors/checkosrelease/actor.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/actors/checkpersistentmounts/actor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/actors/checkpersistentmounts/actor.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/actors/checkrhsmsku/actor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/actors/checkrhsmsku/actor.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/actors/checkrhsmsku/libraries/checkrhsmsku.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/actors/checkrhsmsku/libraries/checkrhsmsku.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/actors/checkrootsymlinks/actor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/actors/checkrootsymlinks/actor.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/actors/checksaphana/actor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/actors/checksaphana/actor.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/actors/checksaphana/libraries/checksaphana.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/actors/checksaphana/libraries/checksaphana.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/actors/checkselinux/actor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/actors/checkselinux/actor.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/actors/checkselinux/libraries/checkselinux.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/actors/checkselinux/libraries/checkselinux.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/actors/checkskippedrepositories/actor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/actors/checkskippedrepositories/actor.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/actors/checkskipphase/actor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/actors/checkskipphase/actor.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/actors/checksystemarch/actor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/actors/checksystemarch/actor.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/actors/checktargetiso/actor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/actors/checktargetiso/actor.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/actors/checktargetrepos/actor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/actors/checktargetrepos/actor.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/actors/checktargetversion/actor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/actors/checktargetversion/actor.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/actors/checkyumpluginsenabled/actor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/actors/checkyumpluginsenabled/actor.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/actors/cloud/checkgrubenvtofile/actor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/actors/cloud/checkgrubenvtofile/actor.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/actors/cloud/checkrhui/actor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/actors/cloud/checkrhui/actor.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/actors/cloud/checkrhui/libraries/checkrhui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/actors/cloud/checkrhui/libraries/checkrhui.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/actors/cloud/convertgrubenvtofile/actor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/actors/cloud/convertgrubenvtofile/actor.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/actors/cloud/scanhybridimage/actor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/actors/cloud/scanhybridimage/actor.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/actors/commonleappdracutmodules/actor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/actors/commonleappdracutmodules/actor.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/actors/createisorepofile/actor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/actors/createisorepofile/actor.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/actors/createresumeservice/actor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/actors/createresumeservice/actor.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/actors/cryptopoliciescheck/actor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/actors/cryptopoliciescheck/actor.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/actors/detectgrubconfigerror/actor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/actors/detectgrubconfigerror/actor.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/actors/detectkerneldrivers/actor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/actors/detectkerneldrivers/actor.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/actors/distributionsignedrpmcheck/actor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/actors/distributionsignedrpmcheck/actor.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/actors/distributionsignedrpmscanner/actor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/actors/distributionsignedrpmscanner/actor.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/actors/dnfdryrun/actor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/actors/dnfdryrun/actor.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/actors/dnfpackagedownload/actor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/actors/dnfpackagedownload/actor.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/actors/dnftransactioncheck/actor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/actors/dnftransactioncheck/actor.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/actors/dnfupgradetransaction/actor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/actors/dnfupgradetransaction/actor.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/actors/efibootorderfix/eficheckboot/actor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/actors/efibootorderfix/eficheckboot/actor.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/actors/efibootorderfix/finalization/actor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/actors/efibootorderfix/finalization/actor.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/actors/efibootorderfix/interim/actor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/actors/efibootorderfix/interim/actor.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/actors/enablerhsmtargetrepos/actor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/actors/enablerhsmtargetrepos/actor.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/actors/filterrpmtransactionevents/actor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/actors/filterrpmtransactionevents/actor.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/actors/getenabledmodules/actor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/actors/getenabledmodules/actor.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/actors/getinstalleddesktops/actor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/actors/getinstalleddesktops/actor.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/actors/gpgpubkeycheck/actor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/actors/gpgpubkeycheck/actor.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/actors/ifcfgscanner/actor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/actors/ifcfgscanner/actor.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/actors/ifcfgscanner/libraries/ifcfgscanner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/actors/ifcfgscanner/libraries/ifcfgscanner.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/actors/initramfs/checkfipsenabled/actor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/actors/initramfs/checkfipsenabled/actor.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/actors/initramfs/checkinitramfstasks/actor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/actors/initramfs/checkinitramfstasks/actor.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/actors/initramfs/mounttargetiso/actor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/actors/initramfs/mounttargetiso/actor.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/actors/initramfs/tmpactor/actor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/actors/initramfs/tmpactor/actor.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/actors/insightsautoregister/actor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/actors/insightsautoregister/actor.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/actors/ipascanner/actor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/actors/ipascanner/actor.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/actors/ipascanner/libraries/ipascanner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/actors/ipascanner/libraries/ipascanner.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/actors/ipascanner/tests/test_ipascanner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/actors/ipascanner/tests/test_ipascanner.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/actors/ipuworkflowconfig/actor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/actors/ipuworkflowconfig/actor.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/actors/kernel/checkinstalledkernels/actor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/actors/kernel/checkinstalledkernels/actor.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/actors/kernel/checkkpatch/actor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/actors/kernel/checkkpatch/actor.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/actors/kernelcmdlineconfig/actor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/actors/kernelcmdlineconfig/actor.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/actors/livemode/liveimagegenerator/actor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/actors/livemode/liveimagegenerator/actor.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/actors/livemode/livemodereporter/actor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/actors/livemode/livemodereporter/actor.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/actors/livemode/removeliveimage/actor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/actors/livemode/removeliveimage/actor.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/actors/luksscanner/actor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/actors/luksscanner/actor.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/actors/luksscanner/libraries/luksscanner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/actors/luksscanner/libraries/luksscanner.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/actors/luksscanner/tests/test_luksscaner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/actors/luksscanner/tests/test_luksscaner.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/actors/missinggpgkeysinhibitor/actor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/actors/missinggpgkeysinhibitor/actor.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/actors/networkmanagerreadconfig/actor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/actors/networkmanagerreadconfig/actor.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/actors/opensshconfigscanner/actor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/actors/opensshconfigscanner/actor.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/actors/opensshpermitrootlogincheck/actor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/actors/opensshpermitrootlogincheck/actor.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/actors/openssl/checkopensslconf/actor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/actors/openssl/checkopensslconf/actor.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/actors/openssl/migrateopensslconf/actor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/actors/openssl/migrateopensslconf/actor.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/actors/openssl/opensslconfigscanner/actor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/actors/openssl/opensslconfigscanner/actor.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/actors/pcidevicesscanner/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/actors/pcidevicesscanner/Makefile -------------------------------------------------------------------------------- /repos/system_upgrade/common/actors/pcidevicesscanner/actor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/actors/pcidevicesscanner/actor.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/actors/persistentnetnames/actor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/actors/persistentnetnames/actor.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/actors/persistentnetnamesconfig/actor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/actors/persistentnetnamesconfig/actor.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/actors/persistentnetnamesdisable/actor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/actors/persistentnetnamesdisable/actor.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/actors/persistentnetnamesinitramfs/actor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/actors/persistentnetnamesinitramfs/actor.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/actors/peseventsscanner/actor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/actors/peseventsscanner/actor.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/actors/peseventsscanner/tests/files/sample02.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /repos/system_upgrade/common/actors/peseventsscanner/tests/files/sample03.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repos/system_upgrade/common/actors/preparepythonworkround/actor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/actors/preparepythonworkround/actor.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/actors/removebootfiles/actor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/actors/removebootfiles/actor.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/actors/removeleftoverpackages/actor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/actors/removeleftoverpackages/actor.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/actors/removeobsoletegpgkeys/actor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/actors/removeobsoletegpgkeys/actor.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/actors/removeresumeservice/actor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/actors/removeresumeservice/actor.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/actors/removeupgradeartifacts/actor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/actors/removeupgradeartifacts/actor.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/actors/removeupgradebootentry/actor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/actors/removeupgradebootentry/actor.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/actors/reportsettargetrelease/actor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/actors/reportsettargetrelease/actor.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/actors/repositoriesblacklist/actor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/actors/repositoriesblacklist/actor.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/actors/repositoriesmapping/actor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/actors/repositoriesmapping/actor.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/actors/rootscanner/actor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/actors/rootscanner/actor.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/actors/rootscanner/libraries/rootscanner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/actors/rootscanner/libraries/rootscanner.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/actors/rootscanner/tests/test_rootscanner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/actors/rootscanner/tests/test_rootscanner.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/actors/rpmscanner/actor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/actors/rpmscanner/actor.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/actors/rpmscanner/libraries/rpmscanner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/actors/rpmscanner/libraries/rpmscanner.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/actors/rpmscanner/tests/test_rpmscanner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/actors/rpmscanner/tests/test_rpmscanner.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/actors/satellite_upgrade_services/actor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/actors/satellite_upgrade_services/actor.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/actors/satellite_upgrader/actor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/actors/satellite_upgrader/actor.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/actors/scan_default_initramfs/actor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/actors/scan_default_initramfs/actor.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/actors/scan_source_boot_loader/actor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/actors/scan_source_boot_loader/actor.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/actors/scanclienablerepo/actor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/actors/scanclienablerepo/actor.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/actors/scancpu/actor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/actors/scancpu/actor.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/actors/scancpu/libraries/scancpu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/actors/scancpu/libraries/scancpu.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/actors/scancpu/tests/files/invalid: -------------------------------------------------------------------------------- 1 | a 2 | b 3 | -------------------------------------------------------------------------------- /repos/system_upgrade/common/actors/scancpu/tests/files/lscpu_aarch64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/actors/scancpu/tests/files/lscpu_aarch64 -------------------------------------------------------------------------------- /repos/system_upgrade/common/actors/scancpu/tests/files/lscpu_ppc64le: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/actors/scancpu/tests/files/lscpu_ppc64le -------------------------------------------------------------------------------- /repos/system_upgrade/common/actors/scancpu/tests/files/lscpu_s390x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/actors/scancpu/tests/files/lscpu_s390x -------------------------------------------------------------------------------- /repos/system_upgrade/common/actors/scancpu/tests/files/lscpu_x86_64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/actors/scancpu/tests/files/lscpu_x86_64 -------------------------------------------------------------------------------- /repos/system_upgrade/common/actors/scancpu/tests/test_scancpu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/actors/scancpu/tests/test_scancpu.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/actors/scancryptopolicies/actor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/actors/scancryptopolicies/actor.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/actors/scancustommodifications/actor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/actors/scancustommodifications/actor.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/actors/scancustomrepofile/actor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/actors/scancustomrepofile/actor.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/actors/scandasd/actor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/actors/scandasd/actor.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/actors/scandasd/libraries/scandasd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/actors/scandasd/libraries/scandasd.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/actors/scandasd/tests/unit_test_scandasd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/actors/scandasd/tests/unit_test_scandasd.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/actors/scandnfpluginpath/actor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/actors/scandnfpluginpath/actor.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/actors/scanfilesfortargetuserspace/actor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/actors/scanfilesfortargetuserspace/actor.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/actors/scanfips/actor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/actors/scanfips/actor.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/actors/scanfips/tests/test_scanfips.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/actors/scanfips/tests/test_scanfips.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/actors/scangrubconfig/actor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/actors/scangrubconfig/actor.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/actors/scangrubconfig/libraries/scanner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/actors/scangrubconfig/libraries/scanner.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/actors/scangrubdevice/actor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/actors/scangrubdevice/actor.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/actors/scankernelcmdline/actor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/actors/scankernelcmdline/actor.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/actors/scanmemory/actor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/actors/scanmemory/actor.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/actors/scanmemory/libraries/scanmemory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/actors/scanmemory/libraries/scanmemory.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/actors/scanmemory/tests/test_scanmemory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/actors/scanmemory/tests/test_scanmemory.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/actors/scanpkgmanager/actor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/actors/scanpkgmanager/actor.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/actors/scanpkgmanager/tests/files/releasever: -------------------------------------------------------------------------------- 1 | 7.7 2 | 3 | -------------------------------------------------------------------------------- /repos/system_upgrade/common/actors/scansaphana/actor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/actors/scansaphana/actor.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/actors/scansaphana/libraries/scansaphana.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/actors/scansaphana/libraries/scansaphana.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/actors/scansaphana/tests/test_scansaphana.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/actors/scansaphana/tests/test_scansaphana.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/actors/scansourcefiles/actor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/actors/scansourcefiles/actor.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/actors/scansourcekernel/actor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/actors/scansourcekernel/actor.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/actors/scansubscriptionmanagerinfo/actor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/actors/scansubscriptionmanagerinfo/actor.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/actors/scantargetiso/actor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/actors/scantargetiso/actor.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/actors/scanzfcp/actor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/actors/scanzfcp/actor.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/actors/scanzfcp/libraries/scanzfcp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/actors/scanzfcp/libraries/scanzfcp.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/actors/scanzfcp/tests/unit_test_scanzfcp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/actors/scanzfcp/tests/unit_test_scanzfcp.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/actors/scheduleselinuxrelabeling/actor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/actors/scheduleselinuxrelabeling/actor.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/actors/selinux/selinuxapplycustom/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/actors/selinux/selinuxapplycustom/Makefile -------------------------------------------------------------------------------- /repos/system_upgrade/common/actors/selinux/selinuxapplycustom/actor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/actors/selinux/selinuxapplycustom/actor.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/actors/selinux/selinuxcontentscanner/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/actors/selinux/selinuxcontentscanner/Makefile -------------------------------------------------------------------------------- /repos/system_upgrade/common/actors/selinux/selinuxcontentscanner/actor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/actors/selinux/selinuxcontentscanner/actor.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/actors/selinux/selinuxprepare/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/actors/selinux/selinuxprepare/Makefile -------------------------------------------------------------------------------- /repos/system_upgrade/common/actors/selinux/selinuxprepare/actor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/actors/selinux/selinuxprepare/actor.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/actors/setetcreleasever/actor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/actors/setetcreleasever/actor.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/actors/setpermissiveselinux/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/actors/setpermissiveselinux/Makefile -------------------------------------------------------------------------------- /repos/system_upgrade/common/actors/setpermissiveselinux/actor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/actors/setpermissiveselinux/actor.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/actors/setuptargetrepos/actor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/actors/setuptargetrepos/actor.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/actors/storagescanner/actor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/actors/storagescanner/actor.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/actors/storagescanner/tests/files/fstab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/actors/storagescanner/tests/files/fstab -------------------------------------------------------------------------------- /repos/system_upgrade/common/actors/storagescanner/tests/files/mounts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/actors/storagescanner/tests/files/mounts -------------------------------------------------------------------------------- /repos/system_upgrade/common/actors/storagescanner/tests/files/partitions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/actors/storagescanner/tests/files/partitions -------------------------------------------------------------------------------- /repos/system_upgrade/common/actors/systemd/repairsystemdsymlinks/actor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/actors/systemd/repairsystemdsymlinks/actor.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/actors/systemd/scansystemdsource/actor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/actors/systemd/scansystemdsource/actor.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/actors/systemd/scansystemdtarget/actor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/actors/systemd/scansystemdtarget/actor.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/actors/systemfacts/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/actors/systemfacts/Makefile -------------------------------------------------------------------------------- /repos/system_upgrade/common/actors/systemfacts/actor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/actors/systemfacts/actor.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/actors/systemfacts/libraries/systemfacts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/actors/systemfacts/libraries/systemfacts.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/actors/systemfacts/tests/test_systemfacts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/actors/systemfacts/tests/test_systemfacts.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/actors/targetuserspacecreator/actor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/actors/targetuserspacecreator/actor.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/actors/transactionworkarounds/actor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/actors/transactionworkarounds/actor.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/actors/trustedgpgkeysscanner/actor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/actors/trustedgpgkeysscanner/actor.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/actors/udev/udevadminfo/actor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/actors/udev/udevadminfo/actor.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/actors/unsupportedupgradecheck/actor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/actors/unsupportedupgradecheck/actor.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/actors/updategrubcore/actor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/actors/updategrubcore/actor.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/actors/usedrepositoriesscanner/actor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/actors/usedrepositoriesscanner/actor.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/actors/verifycheckresults/actor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/actors/verifycheckresults/actor.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/actors/verifydialogs/actor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/actors/verifydialogs/actor.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/actors/xfsinfoscanner/actor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/actors/xfsinfoscanner/actor.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/configs/rhui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/configs/rhui.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/files/distro/almalinux/gpg-signatures.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/files/distro/almalinux/gpg-signatures.json -------------------------------------------------------------------------------- /repos/system_upgrade/common/files/distro/centos/gpg-signatures.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/files/distro/centos/gpg-signatures.json -------------------------------------------------------------------------------- /repos/system_upgrade/common/files/distro/rhel/gpg-signatures.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/files/distro/rhel/gpg-signatures.json -------------------------------------------------------------------------------- /repos/system_upgrade/common/files/prod-certs/10.0/279.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/files/prod-certs/10.0/279.pem -------------------------------------------------------------------------------- /repos/system_upgrade/common/files/prod-certs/10.0/362.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/files/prod-certs/10.0/362.pem -------------------------------------------------------------------------------- /repos/system_upgrade/common/files/prod-certs/10.0/363.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/files/prod-certs/10.0/363.pem -------------------------------------------------------------------------------- /repos/system_upgrade/common/files/prod-certs/10.0/419.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/files/prod-certs/10.0/419.pem -------------------------------------------------------------------------------- /repos/system_upgrade/common/files/prod-certs/10.0/433.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/files/prod-certs/10.0/433.pem -------------------------------------------------------------------------------- /repos/system_upgrade/common/files/prod-certs/10.0/479.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/files/prod-certs/10.0/479.pem -------------------------------------------------------------------------------- /repos/system_upgrade/common/files/prod-certs/10.0/486.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/files/prod-certs/10.0/486.pem -------------------------------------------------------------------------------- /repos/system_upgrade/common/files/prod-certs/10.0/72.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/files/prod-certs/10.0/72.pem -------------------------------------------------------------------------------- /repos/system_upgrade/common/files/prod-certs/10.1/279.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/files/prod-certs/10.1/279.pem -------------------------------------------------------------------------------- /repos/system_upgrade/common/files/prod-certs/10.1/362.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/files/prod-certs/10.1/362.pem -------------------------------------------------------------------------------- /repos/system_upgrade/common/files/prod-certs/10.1/363.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/files/prod-certs/10.1/363.pem -------------------------------------------------------------------------------- /repos/system_upgrade/common/files/prod-certs/10.1/419.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/files/prod-certs/10.1/419.pem -------------------------------------------------------------------------------- /repos/system_upgrade/common/files/prod-certs/10.1/433.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/files/prod-certs/10.1/433.pem -------------------------------------------------------------------------------- /repos/system_upgrade/common/files/prod-certs/10.1/479.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/files/prod-certs/10.1/479.pem -------------------------------------------------------------------------------- /repos/system_upgrade/common/files/prod-certs/10.1/486.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/files/prod-certs/10.1/486.pem -------------------------------------------------------------------------------- /repos/system_upgrade/common/files/prod-certs/10.1/72.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/files/prod-certs/10.1/72.pem -------------------------------------------------------------------------------- /repos/system_upgrade/common/files/prod-certs/10.2/279.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/files/prod-certs/10.2/279.pem -------------------------------------------------------------------------------- /repos/system_upgrade/common/files/prod-certs/10.2/362.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/files/prod-certs/10.2/362.pem -------------------------------------------------------------------------------- /repos/system_upgrade/common/files/prod-certs/10.2/363.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/files/prod-certs/10.2/363.pem -------------------------------------------------------------------------------- /repos/system_upgrade/common/files/prod-certs/10.2/419.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/files/prod-certs/10.2/419.pem -------------------------------------------------------------------------------- /repos/system_upgrade/common/files/prod-certs/10.2/433.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/files/prod-certs/10.2/433.pem -------------------------------------------------------------------------------- /repos/system_upgrade/common/files/prod-certs/10.2/479.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/files/prod-certs/10.2/479.pem -------------------------------------------------------------------------------- /repos/system_upgrade/common/files/prod-certs/10.2/486.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/files/prod-certs/10.2/486.pem -------------------------------------------------------------------------------- /repos/system_upgrade/common/files/prod-certs/10.2/72.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/files/prod-certs/10.2/72.pem -------------------------------------------------------------------------------- /repos/system_upgrade/common/files/prod-certs/8.0/279.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/files/prod-certs/8.0/279.pem -------------------------------------------------------------------------------- /repos/system_upgrade/common/files/prod-certs/8.0/419.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/files/prod-certs/8.0/419.pem -------------------------------------------------------------------------------- /repos/system_upgrade/common/files/prod-certs/8.0/479.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/files/prod-certs/8.0/479.pem -------------------------------------------------------------------------------- /repos/system_upgrade/common/files/prod-certs/8.0/72.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/files/prod-certs/8.0/72.pem -------------------------------------------------------------------------------- /repos/system_upgrade/common/files/prod-certs/8.1/279.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/files/prod-certs/8.1/279.pem -------------------------------------------------------------------------------- /repos/system_upgrade/common/files/prod-certs/8.1/419.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/files/prod-certs/8.1/419.pem -------------------------------------------------------------------------------- /repos/system_upgrade/common/files/prod-certs/8.1/479.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/files/prod-certs/8.1/479.pem -------------------------------------------------------------------------------- /repos/system_upgrade/common/files/prod-certs/8.1/72.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/files/prod-certs/8.1/72.pem -------------------------------------------------------------------------------- /repos/system_upgrade/common/files/prod-certs/8.10/279.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/files/prod-certs/8.10/279.pem -------------------------------------------------------------------------------- /repos/system_upgrade/common/files/prod-certs/8.10/362.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/files/prod-certs/8.10/362.pem -------------------------------------------------------------------------------- /repos/system_upgrade/common/files/prod-certs/8.10/363.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/files/prod-certs/8.10/363.pem -------------------------------------------------------------------------------- /repos/system_upgrade/common/files/prod-certs/8.10/419.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/files/prod-certs/8.10/419.pem -------------------------------------------------------------------------------- /repos/system_upgrade/common/files/prod-certs/8.10/433.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/files/prod-certs/8.10/433.pem -------------------------------------------------------------------------------- /repos/system_upgrade/common/files/prod-certs/8.10/479.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/files/prod-certs/8.10/479.pem -------------------------------------------------------------------------------- /repos/system_upgrade/common/files/prod-certs/8.10/486.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/files/prod-certs/8.10/486.pem -------------------------------------------------------------------------------- /repos/system_upgrade/common/files/prod-certs/8.10/72.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/files/prod-certs/8.10/72.pem -------------------------------------------------------------------------------- /repos/system_upgrade/common/files/prod-certs/8.2/279.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/files/prod-certs/8.2/279.pem -------------------------------------------------------------------------------- /repos/system_upgrade/common/files/prod-certs/8.2/419.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/files/prod-certs/8.2/419.pem -------------------------------------------------------------------------------- /repos/system_upgrade/common/files/prod-certs/8.2/479.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/files/prod-certs/8.2/479.pem -------------------------------------------------------------------------------- /repos/system_upgrade/common/files/prod-certs/8.2/72.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/files/prod-certs/8.2/72.pem -------------------------------------------------------------------------------- /repos/system_upgrade/common/files/prod-certs/8.3/279.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/files/prod-certs/8.3/279.pem -------------------------------------------------------------------------------- /repos/system_upgrade/common/files/prod-certs/8.3/419.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/files/prod-certs/8.3/419.pem -------------------------------------------------------------------------------- /repos/system_upgrade/common/files/prod-certs/8.3/479.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/files/prod-certs/8.3/479.pem -------------------------------------------------------------------------------- /repos/system_upgrade/common/files/prod-certs/8.3/72.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/files/prod-certs/8.3/72.pem -------------------------------------------------------------------------------- /repos/system_upgrade/common/files/prod-certs/8.4/279.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/files/prod-certs/8.4/279.pem -------------------------------------------------------------------------------- /repos/system_upgrade/common/files/prod-certs/8.4/419.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/files/prod-certs/8.4/419.pem -------------------------------------------------------------------------------- /repos/system_upgrade/common/files/prod-certs/8.4/479.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/files/prod-certs/8.4/479.pem -------------------------------------------------------------------------------- /repos/system_upgrade/common/files/prod-certs/8.4/72.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/files/prod-certs/8.4/72.pem -------------------------------------------------------------------------------- /repos/system_upgrade/common/files/prod-certs/8.5/279.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/files/prod-certs/8.5/279.pem -------------------------------------------------------------------------------- /repos/system_upgrade/common/files/prod-certs/8.5/362.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/files/prod-certs/8.5/362.pem -------------------------------------------------------------------------------- /repos/system_upgrade/common/files/prod-certs/8.5/363.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/files/prod-certs/8.5/363.pem -------------------------------------------------------------------------------- /repos/system_upgrade/common/files/prod-certs/8.5/419.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/files/prod-certs/8.5/419.pem -------------------------------------------------------------------------------- /repos/system_upgrade/common/files/prod-certs/8.5/433.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/files/prod-certs/8.5/433.pem -------------------------------------------------------------------------------- /repos/system_upgrade/common/files/prod-certs/8.5/479.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/files/prod-certs/8.5/479.pem -------------------------------------------------------------------------------- /repos/system_upgrade/common/files/prod-certs/8.5/486.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/files/prod-certs/8.5/486.pem -------------------------------------------------------------------------------- /repos/system_upgrade/common/files/prod-certs/8.5/72.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/files/prod-certs/8.5/72.pem -------------------------------------------------------------------------------- /repos/system_upgrade/common/files/prod-certs/8.6/279.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/files/prod-certs/8.6/279.pem -------------------------------------------------------------------------------- /repos/system_upgrade/common/files/prod-certs/8.6/362.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/files/prod-certs/8.6/362.pem -------------------------------------------------------------------------------- /repos/system_upgrade/common/files/prod-certs/8.6/363.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/files/prod-certs/8.6/363.pem -------------------------------------------------------------------------------- /repos/system_upgrade/common/files/prod-certs/8.6/419.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/files/prod-certs/8.6/419.pem -------------------------------------------------------------------------------- /repos/system_upgrade/common/files/prod-certs/8.6/433.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/files/prod-certs/8.6/433.pem -------------------------------------------------------------------------------- /repos/system_upgrade/common/files/prod-certs/8.6/479.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/files/prod-certs/8.6/479.pem -------------------------------------------------------------------------------- /repos/system_upgrade/common/files/prod-certs/8.6/486.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/files/prod-certs/8.6/486.pem -------------------------------------------------------------------------------- /repos/system_upgrade/common/files/prod-certs/8.6/72.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/files/prod-certs/8.6/72.pem -------------------------------------------------------------------------------- /repos/system_upgrade/common/files/prod-certs/8.7/279.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/files/prod-certs/8.7/279.pem -------------------------------------------------------------------------------- /repos/system_upgrade/common/files/prod-certs/8.7/362.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/files/prod-certs/8.7/362.pem -------------------------------------------------------------------------------- /repos/system_upgrade/common/files/prod-certs/8.7/363.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/files/prod-certs/8.7/363.pem -------------------------------------------------------------------------------- /repos/system_upgrade/common/files/prod-certs/8.7/419.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/files/prod-certs/8.7/419.pem -------------------------------------------------------------------------------- /repos/system_upgrade/common/files/prod-certs/8.7/433.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/files/prod-certs/8.7/433.pem -------------------------------------------------------------------------------- /repos/system_upgrade/common/files/prod-certs/8.7/479.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/files/prod-certs/8.7/479.pem -------------------------------------------------------------------------------- /repos/system_upgrade/common/files/prod-certs/8.7/486.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/files/prod-certs/8.7/486.pem -------------------------------------------------------------------------------- /repos/system_upgrade/common/files/prod-certs/8.7/72.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/files/prod-certs/8.7/72.pem -------------------------------------------------------------------------------- /repos/system_upgrade/common/files/prod-certs/8.8/279.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/files/prod-certs/8.8/279.pem -------------------------------------------------------------------------------- /repos/system_upgrade/common/files/prod-certs/8.8/362.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/files/prod-certs/8.8/362.pem -------------------------------------------------------------------------------- /repos/system_upgrade/common/files/prod-certs/8.8/363.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/files/prod-certs/8.8/363.pem -------------------------------------------------------------------------------- /repos/system_upgrade/common/files/prod-certs/8.8/419.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/files/prod-certs/8.8/419.pem -------------------------------------------------------------------------------- /repos/system_upgrade/common/files/prod-certs/8.8/433.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/files/prod-certs/8.8/433.pem -------------------------------------------------------------------------------- /repos/system_upgrade/common/files/prod-certs/8.8/479.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/files/prod-certs/8.8/479.pem -------------------------------------------------------------------------------- /repos/system_upgrade/common/files/prod-certs/8.8/486.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/files/prod-certs/8.8/486.pem -------------------------------------------------------------------------------- /repos/system_upgrade/common/files/prod-certs/8.8/72.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/files/prod-certs/8.8/72.pem -------------------------------------------------------------------------------- /repos/system_upgrade/common/files/prod-certs/8.9/279.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/files/prod-certs/8.9/279.pem -------------------------------------------------------------------------------- /repos/system_upgrade/common/files/prod-certs/8.9/362.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/files/prod-certs/8.9/362.pem -------------------------------------------------------------------------------- /repos/system_upgrade/common/files/prod-certs/8.9/363.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/files/prod-certs/8.9/363.pem -------------------------------------------------------------------------------- /repos/system_upgrade/common/files/prod-certs/8.9/419.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/files/prod-certs/8.9/419.pem -------------------------------------------------------------------------------- /repos/system_upgrade/common/files/prod-certs/8.9/433.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/files/prod-certs/8.9/433.pem -------------------------------------------------------------------------------- /repos/system_upgrade/common/files/prod-certs/8.9/479.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/files/prod-certs/8.9/479.pem -------------------------------------------------------------------------------- /repos/system_upgrade/common/files/prod-certs/8.9/486.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/files/prod-certs/8.9/486.pem -------------------------------------------------------------------------------- /repos/system_upgrade/common/files/prod-certs/8.9/72.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/files/prod-certs/8.9/72.pem -------------------------------------------------------------------------------- /repos/system_upgrade/common/files/prod-certs/9.0/279.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/files/prod-certs/9.0/279.pem -------------------------------------------------------------------------------- /repos/system_upgrade/common/files/prod-certs/9.0/362.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/files/prod-certs/9.0/362.pem -------------------------------------------------------------------------------- /repos/system_upgrade/common/files/prod-certs/9.0/363.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/files/prod-certs/9.0/363.pem -------------------------------------------------------------------------------- /repos/system_upgrade/common/files/prod-certs/9.0/419.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/files/prod-certs/9.0/419.pem -------------------------------------------------------------------------------- /repos/system_upgrade/common/files/prod-certs/9.0/433.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/files/prod-certs/9.0/433.pem -------------------------------------------------------------------------------- /repos/system_upgrade/common/files/prod-certs/9.0/479.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/files/prod-certs/9.0/479.pem -------------------------------------------------------------------------------- /repos/system_upgrade/common/files/prod-certs/9.0/486.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/files/prod-certs/9.0/486.pem -------------------------------------------------------------------------------- /repos/system_upgrade/common/files/prod-certs/9.0/72.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/files/prod-certs/9.0/72.pem -------------------------------------------------------------------------------- /repos/system_upgrade/common/files/prod-certs/9.1/279.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/files/prod-certs/9.1/279.pem -------------------------------------------------------------------------------- /repos/system_upgrade/common/files/prod-certs/9.1/362.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/files/prod-certs/9.1/362.pem -------------------------------------------------------------------------------- /repos/system_upgrade/common/files/prod-certs/9.1/363.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/files/prod-certs/9.1/363.pem -------------------------------------------------------------------------------- /repos/system_upgrade/common/files/prod-certs/9.1/419.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/files/prod-certs/9.1/419.pem -------------------------------------------------------------------------------- /repos/system_upgrade/common/files/prod-certs/9.1/433.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/files/prod-certs/9.1/433.pem -------------------------------------------------------------------------------- /repos/system_upgrade/common/files/prod-certs/9.1/479.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/files/prod-certs/9.1/479.pem -------------------------------------------------------------------------------- /repos/system_upgrade/common/files/prod-certs/9.1/486.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/files/prod-certs/9.1/486.pem -------------------------------------------------------------------------------- /repos/system_upgrade/common/files/prod-certs/9.1/72.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/files/prod-certs/9.1/72.pem -------------------------------------------------------------------------------- /repos/system_upgrade/common/files/prod-certs/9.2/279.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/files/prod-certs/9.2/279.pem -------------------------------------------------------------------------------- /repos/system_upgrade/common/files/prod-certs/9.2/362.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/files/prod-certs/9.2/362.pem -------------------------------------------------------------------------------- /repos/system_upgrade/common/files/prod-certs/9.2/363.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/files/prod-certs/9.2/363.pem -------------------------------------------------------------------------------- /repos/system_upgrade/common/files/prod-certs/9.2/419.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/files/prod-certs/9.2/419.pem -------------------------------------------------------------------------------- /repos/system_upgrade/common/files/prod-certs/9.2/433.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/files/prod-certs/9.2/433.pem -------------------------------------------------------------------------------- /repos/system_upgrade/common/files/prod-certs/9.2/479.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/files/prod-certs/9.2/479.pem -------------------------------------------------------------------------------- /repos/system_upgrade/common/files/prod-certs/9.2/486.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/files/prod-certs/9.2/486.pem -------------------------------------------------------------------------------- /repos/system_upgrade/common/files/prod-certs/9.2/72.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/files/prod-certs/9.2/72.pem -------------------------------------------------------------------------------- /repos/system_upgrade/common/files/prod-certs/9.3/279.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/files/prod-certs/9.3/279.pem -------------------------------------------------------------------------------- /repos/system_upgrade/common/files/prod-certs/9.3/362.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/files/prod-certs/9.3/362.pem -------------------------------------------------------------------------------- /repos/system_upgrade/common/files/prod-certs/9.3/363.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/files/prod-certs/9.3/363.pem -------------------------------------------------------------------------------- /repos/system_upgrade/common/files/prod-certs/9.3/419.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/files/prod-certs/9.3/419.pem -------------------------------------------------------------------------------- /repos/system_upgrade/common/files/prod-certs/9.3/433.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/files/prod-certs/9.3/433.pem -------------------------------------------------------------------------------- /repos/system_upgrade/common/files/prod-certs/9.3/479.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/files/prod-certs/9.3/479.pem -------------------------------------------------------------------------------- /repos/system_upgrade/common/files/prod-certs/9.3/486.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/files/prod-certs/9.3/486.pem -------------------------------------------------------------------------------- /repos/system_upgrade/common/files/prod-certs/9.3/72.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/files/prod-certs/9.3/72.pem -------------------------------------------------------------------------------- /repos/system_upgrade/common/files/prod-certs/9.4/279.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/files/prod-certs/9.4/279.pem -------------------------------------------------------------------------------- /repos/system_upgrade/common/files/prod-certs/9.4/362.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/files/prod-certs/9.4/362.pem -------------------------------------------------------------------------------- /repos/system_upgrade/common/files/prod-certs/9.4/363.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/files/prod-certs/9.4/363.pem -------------------------------------------------------------------------------- /repos/system_upgrade/common/files/prod-certs/9.4/419.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/files/prod-certs/9.4/419.pem -------------------------------------------------------------------------------- /repos/system_upgrade/common/files/prod-certs/9.4/433.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/files/prod-certs/9.4/433.pem -------------------------------------------------------------------------------- /repos/system_upgrade/common/files/prod-certs/9.4/479.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/files/prod-certs/9.4/479.pem -------------------------------------------------------------------------------- /repos/system_upgrade/common/files/prod-certs/9.4/486.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/files/prod-certs/9.4/486.pem -------------------------------------------------------------------------------- /repos/system_upgrade/common/files/prod-certs/9.4/72.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/files/prod-certs/9.4/72.pem -------------------------------------------------------------------------------- /repos/system_upgrade/common/files/prod-certs/9.5/279.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/files/prod-certs/9.5/279.pem -------------------------------------------------------------------------------- /repos/system_upgrade/common/files/prod-certs/9.5/362.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/files/prod-certs/9.5/362.pem -------------------------------------------------------------------------------- /repos/system_upgrade/common/files/prod-certs/9.5/363.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/files/prod-certs/9.5/363.pem -------------------------------------------------------------------------------- /repos/system_upgrade/common/files/prod-certs/9.5/419.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/files/prod-certs/9.5/419.pem -------------------------------------------------------------------------------- /repos/system_upgrade/common/files/prod-certs/9.5/433.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/files/prod-certs/9.5/433.pem -------------------------------------------------------------------------------- /repos/system_upgrade/common/files/prod-certs/9.5/479.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/files/prod-certs/9.5/479.pem -------------------------------------------------------------------------------- /repos/system_upgrade/common/files/prod-certs/9.5/486.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/files/prod-certs/9.5/486.pem -------------------------------------------------------------------------------- /repos/system_upgrade/common/files/prod-certs/9.5/72.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/files/prod-certs/9.5/72.pem -------------------------------------------------------------------------------- /repos/system_upgrade/common/files/prod-certs/9.6/279.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/files/prod-certs/9.6/279.pem -------------------------------------------------------------------------------- /repos/system_upgrade/common/files/prod-certs/9.6/362.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/files/prod-certs/9.6/362.pem -------------------------------------------------------------------------------- /repos/system_upgrade/common/files/prod-certs/9.6/363.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/files/prod-certs/9.6/363.pem -------------------------------------------------------------------------------- /repos/system_upgrade/common/files/prod-certs/9.6/419.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/files/prod-certs/9.6/419.pem -------------------------------------------------------------------------------- /repos/system_upgrade/common/files/prod-certs/9.6/433.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/files/prod-certs/9.6/433.pem -------------------------------------------------------------------------------- /repos/system_upgrade/common/files/prod-certs/9.6/479.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/files/prod-certs/9.6/479.pem -------------------------------------------------------------------------------- /repos/system_upgrade/common/files/prod-certs/9.6/486.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/files/prod-certs/9.6/486.pem -------------------------------------------------------------------------------- /repos/system_upgrade/common/files/prod-certs/9.6/72.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/files/prod-certs/9.6/72.pem -------------------------------------------------------------------------------- /repos/system_upgrade/common/files/prod-certs/9.7/279.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/files/prod-certs/9.7/279.pem -------------------------------------------------------------------------------- /repos/system_upgrade/common/files/prod-certs/9.7/362.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/files/prod-certs/9.7/362.pem -------------------------------------------------------------------------------- /repos/system_upgrade/common/files/prod-certs/9.7/363.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/files/prod-certs/9.7/363.pem -------------------------------------------------------------------------------- /repos/system_upgrade/common/files/prod-certs/9.7/419.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/files/prod-certs/9.7/419.pem -------------------------------------------------------------------------------- /repos/system_upgrade/common/files/prod-certs/9.7/433.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/files/prod-certs/9.7/433.pem -------------------------------------------------------------------------------- /repos/system_upgrade/common/files/prod-certs/9.7/479.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/files/prod-certs/9.7/479.pem -------------------------------------------------------------------------------- /repos/system_upgrade/common/files/prod-certs/9.7/486.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/files/prod-certs/9.7/486.pem -------------------------------------------------------------------------------- /repos/system_upgrade/common/files/prod-certs/9.7/72.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/files/prod-certs/9.7/72.pem -------------------------------------------------------------------------------- /repos/system_upgrade/common/files/prod-certs/9.8/279.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/files/prod-certs/9.8/279.pem -------------------------------------------------------------------------------- /repos/system_upgrade/common/files/prod-certs/9.8/362.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/files/prod-certs/9.8/362.pem -------------------------------------------------------------------------------- /repos/system_upgrade/common/files/prod-certs/9.8/363.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/files/prod-certs/9.8/363.pem -------------------------------------------------------------------------------- /repos/system_upgrade/common/files/prod-certs/9.8/419.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/files/prod-certs/9.8/419.pem -------------------------------------------------------------------------------- /repos/system_upgrade/common/files/prod-certs/9.8/433.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/files/prod-certs/9.8/433.pem -------------------------------------------------------------------------------- /repos/system_upgrade/common/files/prod-certs/9.8/479.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/files/prod-certs/9.8/479.pem -------------------------------------------------------------------------------- /repos/system_upgrade/common/files/prod-certs/9.8/486.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/files/prod-certs/9.8/486.pem -------------------------------------------------------------------------------- /repos/system_upgrade/common/files/prod-certs/9.8/72.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/files/prod-certs/9.8/72.pem -------------------------------------------------------------------------------- /repos/system_upgrade/common/files/rhel_upgrade.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/files/rhel_upgrade.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/files/upgrade_paths.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/files/upgrade_paths.json -------------------------------------------------------------------------------- /repos/system_upgrade/common/libraries/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/libraries/Makefile -------------------------------------------------------------------------------- /repos/system_upgrade/common/libraries/config/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/libraries/config/__init__.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/libraries/config/architecture.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/libraries/config/architecture.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/libraries/config/mock_configs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/libraries/config/mock_configs.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/libraries/config/tests/test_architecture.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/libraries/config/tests/test_architecture.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/libraries/config/tests/test_getenvvars.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/libraries/config/tests/test_getenvvars.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/libraries/config/tests/test_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/libraries/config/tests/test_version.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/libraries/config/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/libraries/config/version.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/libraries/distro.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/libraries/distro.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/libraries/dnfconfig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/libraries/dnfconfig.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/libraries/dnfplugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/libraries/dnfplugin.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/libraries/efi_reboot_fix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/libraries/efi_reboot_fix.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/libraries/fetch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/libraries/fetch.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/libraries/gpg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/libraries/gpg.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/libraries/grub.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/libraries/grub.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/libraries/guards.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/libraries/guards.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/libraries/kernel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/libraries/kernel.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/libraries/mdraid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/libraries/mdraid.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/libraries/module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/libraries/module.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/libraries/mounting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/libraries/mounting.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/libraries/multipathutil.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/libraries/multipathutil.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/libraries/overlaygen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/libraries/overlaygen.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/libraries/persistentnetnames.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/libraries/persistentnetnames.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/libraries/repofileutils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/libraries/repofileutils.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/libraries/rhsm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/libraries/rhsm.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/libraries/rhui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/libraries/rhui.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/libraries/rpms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/libraries/rpms.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/libraries/systemd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/libraries/systemd.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/libraries/tests/00-test.preset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/libraries/tests/00-test.preset -------------------------------------------------------------------------------- /repos/system_upgrade/common/libraries/tests/01-test.preset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/libraries/tests/01-test.preset -------------------------------------------------------------------------------- /repos/system_upgrade/common/libraries/tests/05-invalid.preset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/libraries/tests/05-invalid.preset -------------------------------------------------------------------------------- /repos/system_upgrade/common/libraries/tests/grub_invalid: -------------------------------------------------------------------------------- 1 | Nothing to see here! 2 | -------------------------------------------------------------------------------- /repos/system_upgrade/common/libraries/tests/grub_valid: -------------------------------------------------------------------------------- 1 | GRUB GeomHard DiskRead Error 2 | -------------------------------------------------------------------------------- /repos/system_upgrade/common/libraries/tests/panagrams: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/libraries/tests/panagrams -------------------------------------------------------------------------------- /repos/system_upgrade/common/libraries/tests/sample_repos.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/libraries/tests/sample_repos.txt -------------------------------------------------------------------------------- /repos/system_upgrade/common/libraries/tests/test_distro.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/libraries/tests/test_distro.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/libraries/tests/test_dnfplugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/libraries/tests/test_dnfplugin.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/libraries/tests/test_gpg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/libraries/tests/test_gpg.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/libraries/tests/test_grub.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/libraries/tests/test_grub.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/libraries/tests/test_kernel_lib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/libraries/tests/test_kernel_lib.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/libraries/tests/test_mdraid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/libraries/tests/test_mdraid.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/libraries/tests/test_multipathutil.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/libraries/tests/test_multipathutil.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/libraries/tests/test_repofileutils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/libraries/tests/test_repofileutils.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/libraries/tests/test_rhsm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/libraries/tests/test_rhsm.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/libraries/tests/test_rpms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/libraries/tests/test_rpms.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/libraries/tests/test_systemd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/libraries/tests/test_systemd.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/libraries/tests/test_systemd_files/abc.service: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repos/system_upgrade/common/libraries/tests/test_systemd_files/example.service: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repos/system_upgrade/common/libraries/tests/test_systemd_files/example.socket: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repos/system_upgrade/common/libraries/tests/test_systemd_files/extra.service: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repos/system_upgrade/common/libraries/tests/test_systemd_files/globbed-one.service: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repos/system_upgrade/common/libraries/tests/test_systemd_files/globbed-two.service: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repos/system_upgrade/common/libraries/tests/test_systemd_files/template2@.service: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repos/system_upgrade/common/libraries/tests/test_systemd_files/template@.service: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repos/system_upgrade/common/libraries/tests/test_testutils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/libraries/tests/test_testutils.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/libraries/tests/test_utils_logging_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/libraries/tests/test_utils_logging_handler.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/libraries/testutils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/libraries/testutils.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/libraries/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/libraries/utils.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/models/activekernelmodulesfacts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/models/activekernelmodulesfacts.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/models/assets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/models/assets.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/models/bootcontent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/models/bootcontent.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/models/cephinfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/models/cephinfo.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/models/cpuinfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/models/cpuinfo.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/models/cryptopolicy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/models/cryptopolicy.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/models/custommodifications.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/models/custommodifications.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/models/defaultgrubinfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/models/defaultgrubinfo.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/models/devicedriverdeprecationdata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/models/devicedriverdeprecationdata.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/models/dnfpluginpathdetected.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/models/dnfpluginpathdetected.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/models/dnfplugintask.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/models/dnfplugintask.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/models/dnfworkaround.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/models/dnfworkaround.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/models/dynamiclinker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/models/dynamiclinker.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/models/efiinfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/models/efiinfo.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/models/fips.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/models/fips.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/models/firewallsfacts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/models/firewallsfacts.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/models/firmwarefacts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/models/firmwarefacts.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/models/groupsfacts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/models/groupsfacts.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/models/grubcfgbios.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/models/grubcfgbios.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/models/grubconfigerror.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/models/grubconfigerror.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/models/grubenv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/models/grubenv.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/models/grubinfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/models/grubinfo.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/models/hybridimage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/models/hybridimage.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/models/ifcfg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/models/ifcfg.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/models/initramfs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/models/initramfs.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/models/installeddesktopsfacts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/models/installeddesktopsfacts.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/models/installedkernelversion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/models/installedkernelversion.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/models/installedrpm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/models/installedrpm.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/models/installedtargetkernelversion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/models/installedtargetkernelversion.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/models/ipainfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/models/ipainfo.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/models/ipuconfig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/models/ipuconfig.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/models/kernelcmdlineargs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/models/kernelcmdlineargs.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/models/leftoverpackages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/models/leftoverpackages.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/models/livemode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/models/livemode.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/models/luksdump.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/models/luksdump.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/models/memoryinfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/models/memoryinfo.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/models/module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/models/module.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/models/networkmanagerconfig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/models/networkmanagerconfig.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/models/opensshconfig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/models/opensshconfig.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/models/opensslconfig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/models/opensslconfig.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/models/packagemanagerinfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/models/packagemanagerinfo.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/models/pcidevices.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/models/pcidevices.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/models/persistentnetnamesfacts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/models/persistentnetnamesfacts.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/models/repositoriesblacklisted.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/models/repositoriesblacklisted.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/models/repositoriesfacts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/models/repositoriesfacts.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/models/repositoriesmap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/models/repositoriesmap.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/models/repositoriessetuptasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/models/repositoriessetuptasks.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/models/rhsminfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/models/rhsminfo.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/models/rhuiinfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/models/rhuiinfo.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/models/rootdirectory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/models/rootdirectory.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/models/rpmtransactiontasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/models/rpmtransactiontasks.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/models/saphanainfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/models/saphanainfo.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/models/satellite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/models/satellite.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/models/selinux.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/models/selinux.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/models/selinuxdecisions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/models/selinuxdecisions.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/models/selinuxfacts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/models/selinuxfacts.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/models/skippedrepositories.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/models/skippedrepositories.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/models/source_boot_entry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/models/source_boot_entry.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/models/storageinfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/models/storageinfo.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/models/sysctlvariablesfacts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/models/sysctlvariablesfacts.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/models/systemd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/models/systemd.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/models/targetrepositories.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/models/targetrepositories.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/models/targetuserspace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/models/targetuserspace.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/models/thirdpartytagetpythonmodules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/models/thirdpartytagetpythonmodules.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/models/trackedfiles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/models/trackedfiles.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/models/transactioncompleted.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/models/transactioncompleted.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/models/trustedgpgkeys.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/models/trustedgpgkeys.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/models/udev.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/models/udev.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/models/upgradeefientry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/models/upgradeefientry.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/models/upgradeiso.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/models/upgradeiso.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/models/usedrepositories.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/models/usedrepositories.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/models/usersfacts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/models/usersfacts.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/models/xfsinfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/models/xfsinfo.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/models/xfspresence.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/models/xfspresence.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/tags/applications.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/tags/applications.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/tags/checks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/tags/checks.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/tags/download.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/tags/download.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/tags/facts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/tags/facts.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/tags/finalization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/tags/finalization.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/tags/firstboot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/tags/firstboot.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/tags/initramstart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/tags/initramstart.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/tags/interimpreparation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/tags/interimpreparation.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/tags/ipu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/tags/ipu.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/tags/latetests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/tags/latetests.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/tags/preparation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/tags/preparation.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/tags/report.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/tags/report.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/tags/rpmupgrade.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/tags/rpmupgrade.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/tags/thirdpartyapplications.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/tags/thirdpartyapplications.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/tools/importrpmgpgkeys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/tools/importrpmgpgkeys -------------------------------------------------------------------------------- /repos/system_upgrade/common/tools/removerpmgpgkeys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/tools/removerpmgpgkeys -------------------------------------------------------------------------------- /repos/system_upgrade/common/topics/bootprep.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/topics/bootprep.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/topics/rhsm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/topics/rhsm.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/topics/sctpconfigtopic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/topics/sctpconfigtopic.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/topics/systemfacts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/topics/systemfacts.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/topics/targetuserspace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/topics/targetuserspace.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/topics/transaction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/topics/transaction.py -------------------------------------------------------------------------------- /repos/system_upgrade/common/workflows/inplace_upgrade.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/common/workflows/inplace_upgrade.py -------------------------------------------------------------------------------- /repos/system_upgrade/el8toel9/.leapp/info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/el8toel9/.leapp/info -------------------------------------------------------------------------------- /repos/system_upgrade/el8toel9/.leapp/leapp.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/el8toel9/.leapp/leapp.conf -------------------------------------------------------------------------------- /repos/system_upgrade/el8toel9/actors/addarmbootloaderworkaround/actor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/el8toel9/actors/addarmbootloaderworkaround/actor.py -------------------------------------------------------------------------------- /repos/system_upgrade/el8toel9/actors/checkarmbootloader/actor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/el8toel9/actors/checkarmbootloader/actor.py -------------------------------------------------------------------------------- /repos/system_upgrade/el8toel9/actors/checkblacklistca/actor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/el8toel9/actors/checkblacklistca/actor.py -------------------------------------------------------------------------------- /repos/system_upgrade/el8toel9/actors/checkblsgrubcfgonppc64/actor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/el8toel9/actors/checkblsgrubcfgonppc64/actor.py -------------------------------------------------------------------------------- /repos/system_upgrade/el8toel9/actors/checkcustomnetworkscripts/actor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/el8toel9/actors/checkcustomnetworkscripts/actor.py -------------------------------------------------------------------------------- /repos/system_upgrade/el8toel9/actors/checkdeprecatedrpmsignature/actor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/el8toel9/actors/checkdeprecatedrpmsignature/actor.py -------------------------------------------------------------------------------- /repos/system_upgrade/el8toel9/actors/checkifcfg/actor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/el8toel9/actors/checkifcfg/actor.py -------------------------------------------------------------------------------- /repos/system_upgrade/el8toel9/actors/checkifcfg/tests/unit_test_ifcfg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/el8toel9/actors/checkifcfg/tests/unit_test_ifcfg.py -------------------------------------------------------------------------------- /repos/system_upgrade/el8toel9/actors/checkvdo/actor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/el8toel9/actors/checkvdo/actor.py -------------------------------------------------------------------------------- /repos/system_upgrade/el8toel9/actors/checkvdo/libraries/checkvdo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/el8toel9/actors/checkvdo/libraries/checkvdo.py -------------------------------------------------------------------------------- /repos/system_upgrade/el8toel9/actors/checkvdo/tests/unit_test_checkvdo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/el8toel9/actors/checkvdo/tests/unit_test_checkvdo.py -------------------------------------------------------------------------------- /repos/system_upgrade/el8toel9/actors/dotnet/actor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/el8toel9/actors/dotnet/actor.py -------------------------------------------------------------------------------- /repos/system_upgrade/el8toel9/actors/dotnet/tests/test_dotnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/el8toel9/actors/dotnet/tests/test_dotnet.py -------------------------------------------------------------------------------- /repos/system_upgrade/el8toel9/actors/emit_net_naming_scheme/actor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/el8toel9/actors/emit_net_naming_scheme/actor.py -------------------------------------------------------------------------------- /repos/system_upgrade/el8toel9/actors/grub2mkconfigonppc64/actor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/el8toel9/actors/grub2mkconfigonppc64/actor.py -------------------------------------------------------------------------------- /repos/system_upgrade/el8toel9/actors/mariadbcheck/actor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/el8toel9/actors/mariadbcheck/actor.py -------------------------------------------------------------------------------- /repos/system_upgrade/el8toel9/actors/migrateblacklistca/actor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/el8toel9/actors/migrateblacklistca/actor.py -------------------------------------------------------------------------------- /repos/system_upgrade/el8toel9/actors/multipathconfcheck/actor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/el8toel9/actors/multipathconfcheck/actor.py -------------------------------------------------------------------------------- /repos/system_upgrade/el8toel9/actors/multipathconfread/actor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/el8toel9/actors/multipathconfread/actor.py -------------------------------------------------------------------------------- /repos/system_upgrade/el8toel9/actors/multipathconfread/tests/files/conf1.d/empty.conf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repos/system_upgrade/el8toel9/actors/multipathconfread/tests/files/empty.conf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repos/system_upgrade/el8toel9/actors/multipathconfupdate/actor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/el8toel9/actors/multipathconfupdate/actor.py -------------------------------------------------------------------------------- /repos/system_upgrade/el8toel9/actors/multipathconfupdate/tests/files/before/conf1.d/empty.conf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repos/system_upgrade/el8toel9/actors/multipathconfupdate/tests/files/before/empty.conf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repos/system_upgrade/el8toel9/actors/mysqlcheck/actor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/el8toel9/actors/mysqlcheck/actor.py -------------------------------------------------------------------------------- /repos/system_upgrade/el8toel9/actors/mysqlcheck/libraries/mysqlcheck.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/el8toel9/actors/mysqlcheck/libraries/mysqlcheck.py -------------------------------------------------------------------------------- /repos/system_upgrade/el8toel9/actors/mysqlcheck/tests/test_mysqlcheck.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/el8toel9/actors/mysqlcheck/tests/test_mysqlcheck.py -------------------------------------------------------------------------------- /repos/system_upgrade/el8toel9/actors/networkdeprecations/actor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/el8toel9/actors/networkdeprecations/actor.py -------------------------------------------------------------------------------- /repos/system_upgrade/el8toel9/actors/nischeck/actor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/el8toel9/actors/nischeck/actor.py -------------------------------------------------------------------------------- /repos/system_upgrade/el8toel9/actors/nischeck/libraries/nischeck.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/el8toel9/actors/nischeck/libraries/nischeck.py -------------------------------------------------------------------------------- /repos/system_upgrade/el8toel9/actors/nischeck/tests/test_nischeck.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/el8toel9/actors/nischeck/tests/test_nischeck.py -------------------------------------------------------------------------------- /repos/system_upgrade/el8toel9/actors/nisscanner/actor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/el8toel9/actors/nisscanner/actor.py -------------------------------------------------------------------------------- /repos/system_upgrade/el8toel9/actors/nisscanner/libraries/nisscan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/el8toel9/actors/nisscanner/libraries/nisscan.py -------------------------------------------------------------------------------- /repos/system_upgrade/el8toel9/actors/nisscanner/tests/test_nisscan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/el8toel9/actors/nisscanner/tests/test_nisscan.py -------------------------------------------------------------------------------- /repos/system_upgrade/el8toel9/actors/nvidiaproprietarydriver/actor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/el8toel9/actors/nvidiaproprietarydriver/actor.py -------------------------------------------------------------------------------- /repos/system_upgrade/el8toel9/actors/opensshdropindirectory/actor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/el8toel9/actors/opensshdropindirectory/actor.py -------------------------------------------------------------------------------- /repos/system_upgrade/el8toel9/actors/opensshdropindirectorycheck/actor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/el8toel9/actors/opensshdropindirectorycheck/actor.py -------------------------------------------------------------------------------- /repos/system_upgrade/el8toel9/actors/opensshsubsystemsftp/actor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/el8toel9/actors/opensshsubsystemsftp/actor.py -------------------------------------------------------------------------------- /repos/system_upgrade/el8toel9/actors/opensslconfigcheck/actor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/el8toel9/actors/opensslconfigcheck/actor.py -------------------------------------------------------------------------------- /repos/system_upgrade/el8toel9/actors/opensslproviders/actor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/el8toel9/actors/opensslproviders/actor.py -------------------------------------------------------------------------------- /repos/system_upgrade/el8toel9/actors/postgresqlcheck/actor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/el8toel9/actors/postgresqlcheck/actor.py -------------------------------------------------------------------------------- /repos/system_upgrade/el8toel9/actors/pythonthreetmpworkaround/actor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/el8toel9/actors/pythonthreetmpworkaround/actor.py -------------------------------------------------------------------------------- /repos/system_upgrade/el8toel9/actors/registerrubyirbadjustment/actor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/el8toel9/actors/registerrubyirbadjustment/actor.py -------------------------------------------------------------------------------- /repos/system_upgrade/el8toel9/actors/removeupgradeefientry/actor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/el8toel9/actors/removeupgradeefientry/actor.py -------------------------------------------------------------------------------- /repos/system_upgrade/el8toel9/actors/rocecheck/actor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/el8toel9/actors/rocecheck/actor.py -------------------------------------------------------------------------------- /repos/system_upgrade/el8toel9/actors/rocecheck/libraries/rocecheck.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/el8toel9/actors/rocecheck/libraries/rocecheck.py -------------------------------------------------------------------------------- /repos/system_upgrade/el8toel9/actors/rocescanner/actor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/el8toel9/actors/rocescanner/actor.py -------------------------------------------------------------------------------- /repos/system_upgrade/el8toel9/actors/rocescanner/libraries/rocescanner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/el8toel9/actors/rocescanner/libraries/rocescanner.py -------------------------------------------------------------------------------- /repos/system_upgrade/el8toel9/actors/satellite_upgrade_facts/actor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/el8toel9/actors/satellite_upgrade_facts/actor.py -------------------------------------------------------------------------------- /repos/system_upgrade/el8toel9/actors/scanblacklistca/actor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/el8toel9/actors/scanblacklistca/actor.py -------------------------------------------------------------------------------- /repos/system_upgrade/el8toel9/actors/sssdcheck/actor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/el8toel9/actors/sssdcheck/actor.py -------------------------------------------------------------------------------- /repos/system_upgrade/el8toel9/actors/sssdfacts/actor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/el8toel9/actors/sssdfacts/actor.py -------------------------------------------------------------------------------- /repos/system_upgrade/el8toel9/actors/sssdfacts/libraries/sssdfacts8to9.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/el8toel9/actors/sssdfacts/libraries/sssdfacts8to9.py -------------------------------------------------------------------------------- /repos/system_upgrade/el8toel9/actors/vdoconversionscanner/actor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/el8toel9/actors/vdoconversionscanner/actor.py -------------------------------------------------------------------------------- /repos/system_upgrade/el8toel9/actors/xorgdrvcheck/actor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/el8toel9/actors/xorgdrvcheck/actor.py -------------------------------------------------------------------------------- /repos/system_upgrade/el8toel9/actors/xorgdrvfact/actor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/el8toel9/actors/xorgdrvfact/actor.py -------------------------------------------------------------------------------- /repos/system_upgrade/el8toel9/files/bundled-rpms/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repos/system_upgrade/el8toel9/libraries/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repos/system_upgrade/el8toel9/models/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repos/system_upgrade/el8toel9/models/blacklistca.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/el8toel9/models/blacklistca.py -------------------------------------------------------------------------------- /repos/system_upgrade/el8toel9/models/blacklisterror.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/el8toel9/models/blacklisterror.py -------------------------------------------------------------------------------- /repos/system_upgrade/el8toel9/models/firewalldglobalconfig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/el8toel9/models/firewalldglobalconfig.py -------------------------------------------------------------------------------- /repos/system_upgrade/el8toel9/models/firewalldusedobjectnames.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/el8toel9/models/firewalldusedobjectnames.py -------------------------------------------------------------------------------- /repos/system_upgrade/el8toel9/models/multipathconffacts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/el8toel9/models/multipathconffacts.py -------------------------------------------------------------------------------- /repos/system_upgrade/el8toel9/models/networkmanagerconnection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/el8toel9/models/networkmanagerconnection.py -------------------------------------------------------------------------------- /repos/system_upgrade/el8toel9/models/nis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/el8toel9/models/nis.py -------------------------------------------------------------------------------- /repos/system_upgrade/el8toel9/models/roce.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/el8toel9/models/roce.py -------------------------------------------------------------------------------- /repos/system_upgrade/el8toel9/models/sssd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/el8toel9/models/sssd.py -------------------------------------------------------------------------------- /repos/system_upgrade/el8toel9/models/vdoconversioninfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/el8toel9/models/vdoconversioninfo.py -------------------------------------------------------------------------------- /repos/system_upgrade/el8toel9/models/xorgdrv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/el8toel9/models/xorgdrv.py -------------------------------------------------------------------------------- /repos/system_upgrade/el8toel9/tools/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repos/system_upgrade/el8toel9/tools/handlerubyirbsymlink: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/el8toel9/tools/handlerubyirbsymlink -------------------------------------------------------------------------------- /repos/system_upgrade/el9toel10/.leapp/info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/el9toel10/.leapp/info -------------------------------------------------------------------------------- /repos/system_upgrade/el9toel10/.leapp/leapp.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/el9toel10/.leapp/leapp.conf -------------------------------------------------------------------------------- /repos/system_upgrade/el9toel10/actors/check_default_initramfs/actor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/el9toel10/actors/check_default_initramfs/actor.py -------------------------------------------------------------------------------- /repos/system_upgrade/el9toel10/actors/checkoldxfs/actor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/el9toel10/actors/checkoldxfs/actor.py -------------------------------------------------------------------------------- /repos/system_upgrade/el9toel10/actors/inhibitcgroupsv1/actor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/el9toel10/actors/inhibitcgroupsv1/actor.py -------------------------------------------------------------------------------- /repos/system_upgrade/el9toel10/actors/libdbcheck/actor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/el9toel10/actors/libdbcheck/actor.py -------------------------------------------------------------------------------- /repos/system_upgrade/el9toel10/actors/libdbcheck/libraries/libdbcheck.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/el9toel10/actors/libdbcheck/libraries/libdbcheck.py -------------------------------------------------------------------------------- /repos/system_upgrade/el9toel10/actors/libdbcheck/tests/test_libdbcheck.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/el9toel10/actors/libdbcheck/tests/test_libdbcheck.py -------------------------------------------------------------------------------- /repos/system_upgrade/el9toel10/actors/mariadbcheck/actor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/el9toel10/actors/mariadbcheck/actor.py -------------------------------------------------------------------------------- /repos/system_upgrade/el9toel10/actors/migraterpmdb/actor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/el9toel10/actors/migraterpmdb/actor.py -------------------------------------------------------------------------------- /repos/system_upgrade/el9toel10/actors/mysql/checkmysql/actor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/el9toel10/actors/mysql/checkmysql/actor.py -------------------------------------------------------------------------------- /repos/system_upgrade/el9toel10/actors/mysql/scanmysql/actor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/el9toel10/actors/mysql/scanmysql/actor.py -------------------------------------------------------------------------------- /repos/system_upgrade/el9toel10/actors/networkdeprecations/actor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/el9toel10/actors/networkdeprecations/actor.py -------------------------------------------------------------------------------- /repos/system_upgrade/el9toel10/actors/nonscarhsm/actor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/el9toel10/actors/nonscarhsm/actor.py -------------------------------------------------------------------------------- /repos/system_upgrade/el9toel10/actors/nonscarhsm/libraries/nonscarhsm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/el9toel10/actors/nonscarhsm/libraries/nonscarhsm.py -------------------------------------------------------------------------------- /repos/system_upgrade/el9toel10/actors/opensslenginescheck/actor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/el9toel10/actors/opensslenginescheck/actor.py -------------------------------------------------------------------------------- /repos/system_upgrade/el9toel10/actors/pamuserdb/checkpamuserdb/actor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/el9toel10/actors/pamuserdb/checkpamuserdb/actor.py -------------------------------------------------------------------------------- /repos/system_upgrade/el9toel10/actors/pamuserdb/convertpamuserdb/actor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/el9toel10/actors/pamuserdb/convertpamuserdb/actor.py -------------------------------------------------------------------------------- /repos/system_upgrade/el9toel10/actors/pamuserdb/scanpamuserdb/actor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/el9toel10/actors/pamuserdb/scanpamuserdb/actor.py -------------------------------------------------------------------------------- /repos/system_upgrade/el9toel10/actors/postgresqlcheck/actor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/el9toel10/actors/postgresqlcheck/actor.py -------------------------------------------------------------------------------- /repos/system_upgrade/el9toel10/actors/registerrubyirbadjustment/actor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/el9toel10/actors/registerrubyirbadjustment/actor.py -------------------------------------------------------------------------------- /repos/system_upgrade/el9toel10/actors/sssd/sssdchecks/actor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/el9toel10/actors/sssd/sssdchecks/actor.py -------------------------------------------------------------------------------- /repos/system_upgrade/el9toel10/actors/sssd/sssdfacts/actor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/el9toel10/actors/sssd/sssdfacts/actor.py -------------------------------------------------------------------------------- /repos/system_upgrade/el9toel10/actors/sssd/sssdupdate/actor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/el9toel10/actors/sssd/sssdupdate/actor.py -------------------------------------------------------------------------------- /repos/system_upgrade/el9toel10/files/bundled-rpms/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repos/system_upgrade/el9toel10/libraries/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repos/system_upgrade/el9toel10/models/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repos/system_upgrade/el9toel10/models/mysql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/el9toel10/models/mysql.py -------------------------------------------------------------------------------- /repos/system_upgrade/el9toel10/models/pamuserdblocation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/el9toel10/models/pamuserdblocation.py -------------------------------------------------------------------------------- /repos/system_upgrade/el9toel10/models/sssd_knownhostsproxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/el9toel10/models/sssd_knownhostsproxy.py -------------------------------------------------------------------------------- /repos/system_upgrade/el9toel10/tools/handlerubyirbsymlink: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/el9toel10/tools/handlerubyirbsymlink -------------------------------------------------------------------------------- /repos/system_upgrade/el9toel10/tools/migraterpmdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/repos/system_upgrade/el9toel10/tools/migraterpmdb -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/setup.cfg -------------------------------------------------------------------------------- /utils/actor_path.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/utils/actor_path.py -------------------------------------------------------------------------------- /utils/container-builds/Containerfile.el8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/utils/container-builds/Containerfile.el8 -------------------------------------------------------------------------------- /utils/container-builds/Containerfile.el9: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/utils/container-builds/Containerfile.el9 -------------------------------------------------------------------------------- /utils/container-tests/Containerfile.el8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/utils/container-tests/Containerfile.el8 -------------------------------------------------------------------------------- /utils/container-tests/Containerfile.el9: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/utils/container-tests/Containerfile.el9 -------------------------------------------------------------------------------- /utils/container-tests/Containerfile.f42: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/utils/container-tests/Containerfile.f42 -------------------------------------------------------------------------------- /utils/container-tests/ci/Containerfile.el8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/utils/container-tests/ci/Containerfile.el8 -------------------------------------------------------------------------------- /utils/container-tests/ci/Containerfile.el8-lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/utils/container-tests/ci/Containerfile.el8-lint -------------------------------------------------------------------------------- /utils/container-tests/ci/Containerfile.el9: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/utils/container-tests/ci/Containerfile.el9 -------------------------------------------------------------------------------- /utils/container-tests/ci/Containerfile.el9-lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/utils/container-tests/ci/Containerfile.el9-lint -------------------------------------------------------------------------------- /utils/dashboard-json-dump.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/utils/dashboard-json-dump.py -------------------------------------------------------------------------------- /utils/find_actors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/utils/find_actors.py -------------------------------------------------------------------------------- /utils/get_latest_copr_build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/utils/get_latest_copr_build -------------------------------------------------------------------------------- /utils/ibdmp-decode: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/utils/ibdmp-decode -------------------------------------------------------------------------------- /utils/install_actor_deps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/utils/install_actor_deps.py -------------------------------------------------------------------------------- /utils/install_commands.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/utils/install_commands.sh -------------------------------------------------------------------------------- /utils/library_path.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/utils/library_path.py -------------------------------------------------------------------------------- /utils/update_dashboard.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp-repository/HEAD/utils/update_dashboard.sh --------------------------------------------------------------------------------