├── .branch-variables.yml ├── .codecov.yml ├── .coveragerc ├── .github ├── dependabot.yml ├── labeler.yml ├── labeler.yml.j2 ├── pull_request_template.md └── workflows │ ├── README.md │ ├── autolabel.yml │ ├── build-image.yml │ ├── build-image.yml.j2 │ ├── container-autoupdate.yml │ ├── container-autoupdate.yml.j2 │ ├── container-rebuild-action.yml │ ├── define-matrix.yml │ ├── differential-shellcheck.yml │ ├── infra-check.yml │ ├── kickstart-tests.yml │ ├── kickstart-tests.yml.j2 │ ├── l10n-po-update.yml │ ├── l10n-po-update.yml.j2 │ ├── push-tests.yml │ ├── push-tests.yml.j2 │ ├── release-automatically.yml │ ├── release-automatically.yml.j2 │ ├── release-from-tag.yml │ ├── release-notes.yml │ ├── stale-pull-requests.yml │ ├── stale-pull-requests.yml.j2 │ ├── template-check.yml │ ├── tests-daily.yml │ ├── tests.yml │ ├── trigger-webui.yml │ ├── try-release-daily.yml │ └── try-release-daily.yml.j2 ├── .gitignore ├── .gitmodules ├── .packit.yml ├── .packit.yml.j2 ├── .pep8speaks.yml ├── .readthedocs.yaml ├── .shellcheckrc ├── .structure-config ├── CONTRIBUTING.rst ├── COPYING ├── Makefile.am ├── README.rst ├── acinclude.m4 ├── anaconda.py ├── anaconda.spec.in ├── autogen.sh ├── branch-config.mk ├── branch-config.mk.j2 ├── configure.ac ├── data ├── Makefile.am ├── anaconda-gtk.css ├── anaconda.conf ├── anaconda_options.txt ├── command-stubs │ ├── Makefile.am │ └── list-harddrives-stub ├── conf.d │ ├── 00-do-nothing.conf │ ├── 01-still-do-nothing.conf │ ├── Makefile.am │ └── README ├── dbus │ ├── Makefile.am │ ├── anaconda-bus.conf │ ├── org.fedoraproject.Anaconda.Boss.conf │ ├── org.fedoraproject.Anaconda.Boss.service │ ├── org.fedoraproject.Anaconda.Modules.Localization.conf │ ├── org.fedoraproject.Anaconda.Modules.Localization.service │ ├── org.fedoraproject.Anaconda.Modules.Network.conf │ ├── org.fedoraproject.Anaconda.Modules.Network.service │ ├── org.fedoraproject.Anaconda.Modules.Payloads.conf │ ├── org.fedoraproject.Anaconda.Modules.Payloads.service │ ├── org.fedoraproject.Anaconda.Modules.Runtime.conf │ ├── org.fedoraproject.Anaconda.Modules.Runtime.service │ ├── org.fedoraproject.Anaconda.Modules.Security.conf │ ├── org.fedoraproject.Anaconda.Modules.Security.service │ ├── org.fedoraproject.Anaconda.Modules.Services.conf │ ├── org.fedoraproject.Anaconda.Modules.Services.service │ ├── org.fedoraproject.Anaconda.Modules.Storage.conf │ ├── org.fedoraproject.Anaconda.Modules.Storage.service │ ├── org.fedoraproject.Anaconda.Modules.Subscription.conf │ ├── org.fedoraproject.Anaconda.Modules.Subscription.service │ ├── org.fedoraproject.Anaconda.Modules.Timezone.conf │ ├── org.fedoraproject.Anaconda.Modules.Timezone.service │ ├── org.fedoraproject.Anaconda.Modules.Users.conf │ └── org.fedoraproject.Anaconda.Modules.Users.service ├── gtk-4.0 │ ├── Makefile.am │ └── settings.ini ├── interactive-defaults.ks ├── liveinst │ ├── Makefile.am │ ├── README │ ├── gnome │ │ ├── Makefile.am │ │ ├── fedora-welcome.js │ │ └── org.fedoraproject.welcome-screen.desktop │ ├── liveinst │ ├── liveinst-setup.desktop │ ├── liveinst-setup.sh │ ├── liveinst.desktop │ ├── locale1-x11-sync │ ├── locale1-x11-sync.service │ └── org.fedoraproject.pkexec.liveinst.policy ├── pam │ ├── Makefile.am │ └── anaconda ├── pixmaps │ ├── Makefile.am │ ├── anaconda-password-show-off.svg │ └── anaconda-password-show-on.svg ├── profile.d │ ├── Makefile.am │ ├── almalinux.conf │ ├── centos.conf │ ├── circle.conf │ ├── fedora-designsuite.conf │ ├── fedora-eln.conf │ ├── fedora-iot.conf │ ├── fedora-kde.conf │ ├── fedora-kinoite.conf │ ├── fedora-sericea.conf │ ├── fedora-server.conf │ ├── fedora-silverblue.conf │ ├── fedora-workstation.conf │ ├── fedora.conf │ ├── navix.conf │ ├── ovirt.conf │ ├── rhel.conf │ ├── rhvh.conf │ ├── rocky.conf │ ├── scientific-linux.conf │ └── virtuozzo-linux.conf ├── systemd │ ├── Makefile.am │ ├── anaconda-direct.service │ ├── anaconda-fips.service │ ├── anaconda-generator │ ├── anaconda-import-initramfs-certs.service │ ├── anaconda-nm-config.service │ ├── anaconda-nm-disable-autocons-rhel.service │ ├── anaconda-nm-disable-autocons.service │ ├── anaconda-noshell.service │ ├── anaconda-pre.service │ ├── anaconda-s390-device-config-import.service │ ├── anaconda-shell@.service │ ├── anaconda-sshd.service │ ├── anaconda-tmux@.service │ ├── anaconda.service │ ├── anaconda.target │ └── instperf.service ├── tmux.conf └── window-manager │ ├── Makefile.am │ └── config │ ├── Makefile.am │ ├── org.gnome.desktop.wm.keybindings.gschema.override │ └── org.gnome.desktop.wm.preferences.gschema.override ├── dockerfile ├── anaconda-ci │ ├── Dockerfile │ ├── requirements.txt │ └── run-build-and-arg ├── anaconda-iso-creator │ ├── Dockerfile │ ├── adjust-templates-for-webui.patch │ ├── lorax-build │ ├── lorax-build-webui │ ├── lorax-build-webui.j2 │ └── lorax-build.j2 ├── anaconda-live-iso-creator │ ├── Dockerfile │ ├── Dockerfile.j2 │ ├── lmc-build │ └── lmc-build.j2 ├── anaconda-release │ └── Dockerfile └── anaconda-rpm │ ├── Dockerfile │ └── requirements.txt ├── docs ├── .gitignore ├── Makefile.am ├── _static │ └── custom.css ├── boot-options.rst ├── ci-status.rst ├── common-bugs.rst ├── conf.py ├── developer.rst ├── developer │ ├── commit-log.rst │ ├── configuration-files.rst │ ├── driverdisc.rst │ ├── drop-in-scripts.rst │ ├── iscsi.rst │ ├── keyboard-control.rst │ ├── lorax-template-patching.rst │ ├── mount-points.rst │ ├── multipath.rst │ ├── sysconfig-file.rst │ ├── testing.rst │ └── unified-repositories.rst ├── generate_modules.py ├── index.rst ├── intro.rst ├── kickstart.rst ├── list-harddrives.rst ├── release-notes.rst ├── release-notes │ ├── flatpak-inital-support.rst │ ├── home-reuse-mbr.rst │ ├── kickstart-rdp-command.rst │ └── template.rst ├── release.rst ├── reporting.rst ├── requirements.txt └── rescue.rst ├── dracut ├── .shellcheckrc ├── 20_rw_usr.conf ├── Makefile.am ├── README ├── README-driver-updates.md ├── README-testing-changes.rst ├── anaconda-copy-certs.sh ├── anaconda-copy-cmdline.sh ├── anaconda-copy-dhclient.sh ├── anaconda-copy-ks.sh ├── anaconda-copy-prefixdevname.sh ├── anaconda-depmod.sh ├── anaconda-diskroot ├── anaconda-dnsconfd.sh ├── anaconda-error-reporting.sh ├── anaconda-hmcroot ├── anaconda-ifcfg.sh ├── anaconda-ifdown ├── anaconda-ks-sendheaders.sh ├── anaconda-lib.sh ├── anaconda-modprobe.sh ├── anaconda-netroot.sh ├── anaconda-nfsrepo-cleanup.sh ├── anaconda-pre-shutdown.sh ├── anaconda-set-kernel-hung-timeout.sh ├── anaconda-start-dnsconfd.sh ├── dd │ ├── .gitignore │ ├── Makefile.am │ ├── dd_extract.c │ ├── dd_list.c │ ├── dd_utils.h │ ├── rpmutils.c │ └── rpmutils.h ├── driver-updates-genrules.sh ├── driver-updates@.service ├── driver_updates.py ├── fetch-driver-net.sh ├── fetch-kickstart-disk ├── fetch-kickstart-net.sh ├── fetch-updates-disk ├── find-net-intfs-by-driver ├── kickstart-genrules.sh ├── kickstart_version.py ├── kickstart_version.py.j2 ├── module-setup.sh ├── parse-anaconda-dd.sh ├── parse-anaconda-kickstart.sh ├── parse-anaconda-net.sh ├── parse-anaconda-options.sh ├── parse-anaconda-repo.sh ├── parse-kickstart ├── python-deps ├── repo-genrules.sh ├── save-initramfs.sh └── updates-genrules.sh ├── po ├── .gitignore ├── Makefile.am └── l10n-config.mk ├── pyanaconda ├── Makefile.am ├── __init__.py ├── anaconda.py ├── anaconda_loggers.py ├── anaconda_logging.py ├── argument_parsing.py ├── core │ ├── Makefile.am │ ├── __init__.py │ ├── async_utils.py │ ├── configuration │ │ ├── Makefile.am │ │ ├── __init__.py │ │ ├── anaconda.py │ │ ├── base.py │ │ ├── bootloader.py │ │ ├── license.py │ │ ├── localization.py │ │ ├── network.py │ │ ├── payload.py │ │ ├── profile.py │ │ ├── security.py │ │ ├── storage.py │ │ ├── storage_constraints.py │ │ ├── system.py │ │ ├── target.py │ │ ├── timezone.py │ │ ├── ui.py │ │ └── utils.py │ ├── constants.py │ ├── dbus.py │ ├── glib.py │ ├── hw.py │ ├── i18n.py │ ├── kernel.py │ ├── kickstart │ │ ├── Makefile.am │ │ ├── __init__.py │ │ ├── addon.py │ │ ├── commands.py │ │ ├── scripts.py │ │ ├── specification.py │ │ └── version.py │ ├── live_user.py │ ├── path.py │ ├── payload.py │ ├── process_watchers.py │ ├── product.py │ ├── regexes.py │ ├── service.py │ ├── signal.py │ ├── startup │ │ ├── Makefile.am │ │ ├── __init__.py │ │ └── dbus_launcher.py │ ├── storage.py │ ├── string.py │ ├── subscription.py │ ├── threads.py │ ├── timer.py │ ├── users.py │ └── util.py ├── display.py ├── errors.py ├── exception.py ├── flags.py ├── gnome_remote_desktop.py ├── input_checking.py ├── installation_tasks.py ├── kexec.py ├── keyboard.py ├── kickstart.py ├── lifecycle.py ├── localization.py ├── modules │ ├── Makefile.am │ ├── __init__.py │ ├── boss │ │ ├── Makefile.am │ │ ├── __init__.py │ │ ├── __main__.py │ │ ├── boss.py │ │ ├── boss_interface.py │ │ ├── install_manager │ │ │ ├── Makefile.am │ │ │ ├── __init__.py │ │ │ ├── install_manager.py │ │ │ └── installation_category_interface.py │ │ ├── installation.py │ │ ├── kickstart_manager │ │ │ ├── Makefile.am │ │ │ ├── __init__.py │ │ │ ├── element.py │ │ │ ├── kickstart_manager.py │ │ │ └── parser.py │ │ └── module_manager │ │ │ ├── Makefile.am │ │ │ ├── __init__.py │ │ │ ├── module_manager.py │ │ │ ├── module_observer.py │ │ │ └── start_modules.py │ ├── common │ │ ├── Makefile.am │ │ ├── __init__.py │ │ ├── base │ │ │ ├── Makefile.am │ │ │ ├── __init__.py │ │ │ ├── base.py │ │ │ ├── base_interface.py │ │ │ └── base_template.py │ │ ├── constants │ │ │ ├── Makefile.am │ │ │ ├── __init__.py │ │ │ ├── interfaces.py │ │ │ ├── namespaces.py │ │ │ ├── objects.py │ │ │ └── services.py │ │ ├── containers.py │ │ ├── custom_typing.py │ │ ├── errors │ │ │ ├── Makefile.am │ │ │ ├── __init__.py │ │ │ ├── configuration.py │ │ │ ├── general.py │ │ │ ├── installation.py │ │ │ ├── module.py │ │ │ ├── payload.py │ │ │ ├── runtime.py │ │ │ ├── storage.py │ │ │ ├── subscription.py │ │ │ └── task.py │ │ ├── structures │ │ │ ├── Makefile.am │ │ │ ├── __init__.py │ │ │ ├── bootc.py │ │ │ ├── comps.py │ │ │ ├── device_factory.py │ │ │ ├── group.py │ │ │ ├── iscsi.py │ │ │ ├── keyboard_layout.py │ │ │ ├── kickstart.py │ │ │ ├── language.py │ │ │ ├── live_image.py │ │ │ ├── logging.py │ │ │ ├── network.py │ │ │ ├── packages.py │ │ │ ├── partitioning.py │ │ │ ├── payload.py │ │ │ ├── policy.py │ │ │ ├── product.py │ │ │ ├── rdp.py │ │ │ ├── realm.py │ │ │ ├── reboot.py │ │ │ ├── requirement.py │ │ │ ├── rescue.py │ │ │ ├── rpm_ostree.py │ │ │ ├── secret.py │ │ │ ├── security.py │ │ │ ├── sshkey.py │ │ │ ├── storage.py │ │ │ ├── subscription.py │ │ │ ├── timezone.py │ │ │ ├── user.py │ │ │ └── validation.py │ │ ├── submodule_manager.py │ │ ├── task │ │ │ ├── Makefile.am │ │ │ ├── __init__.py │ │ │ ├── cancellable.py │ │ │ ├── progress.py │ │ │ ├── result.py │ │ │ ├── runnable.py │ │ │ ├── task.py │ │ │ └── task_interface.py │ │ └── util.py │ ├── localization │ │ ├── Makefile.am │ │ ├── __init__.py │ │ ├── __main__.py │ │ ├── installation.py │ │ ├── kickstart.py │ │ ├── live_keyboard.py │ │ ├── localed.py │ │ ├── localization.py │ │ ├── localization_interface.py │ │ ├── runtime.py │ │ └── utils.py │ ├── network │ │ ├── Makefile.am │ │ ├── __init__.py │ │ ├── __main__.py │ │ ├── config_file.py │ │ ├── constants.py │ │ ├── device_configuration.py │ │ ├── firewall │ │ │ ├── Makefile.am │ │ │ ├── __init__.py │ │ │ ├── firewall.py │ │ │ ├── firewall_interface.py │ │ │ └── installation.py │ │ ├── initialization.py │ │ ├── installation.py │ │ ├── kickstart.py │ │ ├── network.py │ │ ├── network_interface.py │ │ ├── nm_client.py │ │ └── utils.py │ ├── payloads │ │ ├── Makefile.am │ │ ├── __init__.py │ │ ├── __main__.py │ │ ├── base │ │ │ ├── Makefile.am │ │ │ ├── __init__.py │ │ │ ├── initialization.py │ │ │ └── utils.py │ │ ├── constants.py │ │ ├── installation.py │ │ ├── kickstart.py │ │ ├── payload │ │ │ ├── Makefile.am │ │ │ ├── __init__.py │ │ │ ├── dnf │ │ │ │ ├── Makefile.am │ │ │ │ ├── __init__.py │ │ │ │ ├── dnf.py │ │ │ │ ├── dnf_interface.py │ │ │ │ ├── dnf_manager.py │ │ │ │ ├── download_progress.py │ │ │ │ ├── initialization.py │ │ │ │ ├── installation.py │ │ │ │ ├── repositories.py │ │ │ │ ├── requirements.py │ │ │ │ ├── tear_down.py │ │ │ │ ├── transaction_progress.py │ │ │ │ ├── tree_info.py │ │ │ │ ├── utils.py │ │ │ │ └── validation.py │ │ │ ├── factory.py │ │ │ ├── flatpak │ │ │ │ ├── Makefile.am │ │ │ │ ├── __init__.py │ │ │ │ ├── constants.py │ │ │ │ ├── flatpak.py │ │ │ │ ├── flatpak_interface.py │ │ │ │ ├── flatpak_manager.py │ │ │ │ ├── initialization.py │ │ │ │ ├── installation.py │ │ │ │ ├── source.py │ │ │ │ └── utils.py │ │ │ ├── live_image │ │ │ │ ├── Makefile.am │ │ │ │ ├── __init__.py │ │ │ │ ├── download_progress.py │ │ │ │ ├── installation.py │ │ │ │ ├── installation_progress.py │ │ │ │ ├── live_image.py │ │ │ │ ├── live_image_interface.py │ │ │ │ └── utils.py │ │ │ ├── live_os │ │ │ │ ├── Makefile.am │ │ │ │ ├── __init__.py │ │ │ │ ├── installation.py │ │ │ │ ├── live_os.py │ │ │ │ ├── live_os_interface.py │ │ │ │ └── utils.py │ │ │ ├── payload_base.py │ │ │ ├── payload_base_interface.py │ │ │ └── rpm_ostree │ │ │ │ ├── Makefile.am │ │ │ │ ├── __init__.py │ │ │ │ ├── flatpak_installation.py │ │ │ │ ├── flatpak_manager.py │ │ │ │ ├── installation.py │ │ │ │ ├── rpm_ostree.py │ │ │ │ ├── rpm_ostree_interface.py │ │ │ │ └── util.py │ │ ├── payloads.py │ │ ├── payloads_interface.py │ │ └── source │ │ │ ├── Makefile.am │ │ │ ├── __init__.py │ │ │ ├── bootc │ │ │ ├── Makefile.am │ │ │ ├── __init__.py │ │ │ ├── bootc.py │ │ │ └── bootc_interface.py │ │ │ ├── cdn │ │ │ ├── Makefile.am │ │ │ ├── __init__.py │ │ │ ├── cdn.py │ │ │ ├── cdn_interface.py │ │ │ └── initialization.py │ │ │ ├── cdrom │ │ │ ├── Makefile.am │ │ │ ├── __init__.py │ │ │ ├── cdrom.py │ │ │ ├── cdrom_interface.py │ │ │ └── initialization.py │ │ │ ├── closest_mirror │ │ │ ├── Makefile.am │ │ │ ├── __init__.py │ │ │ ├── closest_mirror.py │ │ │ └── closest_mirror_interface.py │ │ │ ├── factory.py │ │ │ ├── flatpak │ │ │ ├── Makefile.am │ │ │ ├── __init__.py │ │ │ ├── flatpak.py │ │ │ ├── flatpak_interface.py │ │ │ └── initialization.py │ │ │ ├── harddrive │ │ │ ├── Makefile.am │ │ │ ├── __init__.py │ │ │ ├── harddrive.py │ │ │ ├── harddrive_interface.py │ │ │ └── initialization.py │ │ │ ├── hmc │ │ │ ├── Makefile.am │ │ │ ├── __init__.py │ │ │ ├── hmc.py │ │ │ ├── hmc_interface.py │ │ │ └── initialization.py │ │ │ ├── live_image │ │ │ ├── Makefile.am │ │ │ ├── __init__.py │ │ │ ├── initialization.py │ │ │ ├── installation.py │ │ │ ├── live_image.py │ │ │ └── live_image_interface.py │ │ │ ├── live_os │ │ │ ├── Makefile.am │ │ │ ├── __init__.py │ │ │ ├── initialization.py │ │ │ ├── live_os.py │ │ │ └── live_os_interface.py │ │ │ ├── live_tar │ │ │ ├── Makefile.am │ │ │ ├── __init__.py │ │ │ ├── installation.py │ │ │ └── live_tar.py │ │ │ ├── mount_tasks.py │ │ │ ├── nfs │ │ │ ├── Makefile.am │ │ │ ├── __init__.py │ │ │ ├── initialization.py │ │ │ └── nfs.py │ │ │ ├── repo_files │ │ │ ├── Makefile.am │ │ │ ├── __init__.py │ │ │ ├── initialization.py │ │ │ ├── repo_files.py │ │ │ └── repo_files_interface.py │ │ │ ├── repo_path │ │ │ ├── Makefile.am │ │ │ ├── __init__.py │ │ │ ├── initialization.py │ │ │ ├── repo_path.py │ │ │ └── repo_path_interface.py │ │ │ ├── rpm_ostree │ │ │ ├── Makefile.am │ │ │ ├── __init__.py │ │ │ ├── rpm_ostree.py │ │ │ └── rpm_ostree_interface.py │ │ │ ├── rpm_ostree_container │ │ │ ├── Makefile.am │ │ │ ├── __init__.py │ │ │ ├── rpm_ostree_container.py │ │ │ └── rpm_ostree_container_interface.py │ │ │ ├── source_base.py │ │ │ ├── source_base_interface.py │ │ │ ├── url │ │ │ ├── Makefile.am │ │ │ ├── __init__.py │ │ │ └── url.py │ │ │ └── utils.py │ ├── runtime │ │ ├── Makefile.am │ │ ├── __init__.py │ │ ├── __main__.py │ │ ├── dracut_commands │ │ │ ├── Makefile.am │ │ │ ├── __init__.py │ │ │ └── dracut_commands.py │ │ ├── kickstart.py │ │ ├── runtime.py │ │ ├── runtime_interface.py │ │ ├── scripts │ │ │ ├── Makefile.am │ │ │ ├── __init__.py │ │ │ ├── runtime.py │ │ │ ├── scripts.py │ │ │ └── scripts_interface.py │ │ └── user_interface │ │ │ ├── Makefile.am │ │ │ ├── __init__.py │ │ │ ├── ui.py │ │ │ └── ui_interface.py │ ├── security │ │ ├── Makefile.am │ │ ├── __init__.py │ │ ├── __main__.py │ │ ├── certificates │ │ │ ├── Makefile.am │ │ │ ├── __init__.py │ │ │ ├── certificates.py │ │ │ ├── certificates_interface.py │ │ │ └── installation.py │ │ ├── constants.py │ │ ├── installation.py │ │ ├── kickstart.py │ │ ├── security.py │ │ └── security_interface.py │ ├── services │ │ ├── Makefile.am │ │ ├── __init__.py │ │ ├── __main__.py │ │ ├── constants.py │ │ ├── installation.py │ │ ├── kickstart.py │ │ ├── services.py │ │ └── services_interface.py │ ├── storage │ │ ├── Makefile.am │ │ ├── __init__.py │ │ ├── __main__.py │ │ ├── bootloader │ │ │ ├── Makefile.am │ │ │ ├── __init__.py │ │ │ ├── base.py │ │ │ ├── bootloader.py │ │ │ ├── bootloader_interface.py │ │ │ ├── efi.py │ │ │ ├── execution.py │ │ │ ├── extlinux.py │ │ │ ├── factory.py │ │ │ ├── grub2.py │ │ │ ├── image.py │ │ │ ├── installation.py │ │ │ ├── systemd.py │ │ │ ├── utils.py │ │ │ └── zipl.py │ │ ├── checker │ │ │ ├── Makefile.am │ │ │ ├── __init__.py │ │ │ ├── checker.py │ │ │ ├── checker_interface.py │ │ │ └── utils.py │ │ ├── constants.py │ │ ├── dasd │ │ │ ├── Makefile.am │ │ │ ├── __init__.py │ │ │ ├── dasd.py │ │ │ ├── dasd_interface.py │ │ │ ├── discover.py │ │ │ └── format.py │ │ ├── devicetree │ │ │ ├── Makefile.am │ │ │ ├── __init__.py │ │ │ ├── devicetree.py │ │ │ ├── devicetree_interface.py │ │ │ ├── fsset.py │ │ │ ├── handler.py │ │ │ ├── handler_interface.py │ │ │ ├── model.py │ │ │ ├── populate.py │ │ │ ├── rescue.py │ │ │ ├── root.py │ │ │ ├── utils.py │ │ │ ├── viewer.py │ │ │ └── viewer_interface.py │ │ ├── disk_initialization │ │ │ ├── Makefile.am │ │ │ ├── __init__.py │ │ │ ├── configuration.py │ │ │ ├── initialization.py │ │ │ └── initialization_interface.py │ │ ├── disk_selection │ │ │ ├── Makefile.am │ │ │ ├── __init__.py │ │ │ ├── selection.py │ │ │ ├── selection_interface.py │ │ │ └── utils.py │ │ ├── fcoe │ │ │ ├── Makefile.am │ │ │ ├── __init__.py │ │ │ ├── discover.py │ │ │ ├── fcoe.py │ │ │ └── fcoe_interface.py │ │ ├── initialization.py │ │ ├── installation.py │ │ ├── iscsi │ │ │ ├── Makefile.am │ │ │ ├── __init__.py │ │ │ ├── discover.py │ │ │ ├── iscsi.py │ │ │ └── iscsi_interface.py │ │ ├── kickstart.py │ │ ├── nvme │ │ │ ├── Makefile.am │ │ │ ├── __init__.py │ │ │ ├── nvme.py │ │ │ └── nvme_interface.py │ │ ├── partitioning │ │ │ ├── Makefile.am │ │ │ ├── __init__.py │ │ │ ├── automatic │ │ │ │ ├── Makefile.am │ │ │ │ ├── __init__.py │ │ │ │ ├── automatic_interface.py │ │ │ │ ├── automatic_module.py │ │ │ │ ├── automatic_partitioning.py │ │ │ │ ├── noninteractive_partitioning.py │ │ │ │ ├── resizable_interface.py │ │ │ │ ├── resizable_module.py │ │ │ │ └── utils.py │ │ │ ├── base.py │ │ │ ├── base_interface.py │ │ │ ├── base_partitioning.py │ │ │ ├── blivet │ │ │ │ ├── Makefile.am │ │ │ │ ├── __init__.py │ │ │ │ ├── blivet_handler.py │ │ │ │ ├── blivet_interface.py │ │ │ │ └── blivet_module.py │ │ │ ├── constants.py │ │ │ ├── custom │ │ │ │ ├── Makefile.am │ │ │ │ ├── __init__.py │ │ │ │ ├── custom_interface.py │ │ │ │ ├── custom_module.py │ │ │ │ └── custom_partitioning.py │ │ │ ├── factory.py │ │ │ ├── interactive │ │ │ │ ├── Makefile.am │ │ │ │ ├── __init__.py │ │ │ │ ├── add_device.py │ │ │ │ ├── change_device.py │ │ │ │ ├── interactive_interface.py │ │ │ │ ├── interactive_module.py │ │ │ │ ├── interactive_partitioning.py │ │ │ │ ├── scheduler_interface.py │ │ │ │ ├── scheduler_module.py │ │ │ │ └── utils.py │ │ │ ├── manual │ │ │ │ ├── Makefile.am │ │ │ │ ├── __init__.py │ │ │ │ ├── manual_interface.py │ │ │ │ ├── manual_module.py │ │ │ │ ├── manual_partitioning.py │ │ │ │ └── utils.py │ │ │ ├── specification.py │ │ │ └── validate.py │ │ ├── platform.py │ │ ├── reset.py │ │ ├── snapshot │ │ │ ├── Makefile.am │ │ │ ├── __init__.py │ │ │ ├── create.py │ │ │ ├── device.py │ │ │ ├── snapshot.py │ │ │ └── snapshot_interface.py │ │ ├── storage.py │ │ ├── storage_interface.py │ │ ├── storage_subscriber.py │ │ ├── teardown.py │ │ └── zfcp │ │ │ ├── Makefile.am │ │ │ ├── __init__.py │ │ │ ├── discover.py │ │ │ ├── zfcp.py │ │ │ └── zfcp_interface.py │ ├── subscription │ │ ├── Makefile.am │ │ ├── __init__.py │ │ ├── __main__.py │ │ ├── constants.py │ │ ├── initialization.py │ │ ├── installation.py │ │ ├── kickstart.py │ │ ├── rhsm_observer.py │ │ ├── runtime.py │ │ ├── satellite.py │ │ ├── subscription.py │ │ ├── subscription_interface.py │ │ ├── system_purpose.py │ │ └── utils.py │ ├── timezone │ │ ├── Makefile.am │ │ ├── __init__.py │ │ ├── __main__.py │ │ ├── initialization.py │ │ ├── installation.py │ │ ├── kickstart.py │ │ ├── timezone.py │ │ └── timezone_interface.py │ └── users │ │ ├── Makefile.am │ │ ├── __init__.py │ │ ├── __main__.py │ │ ├── installation.py │ │ ├── kickstart.py │ │ ├── users.py │ │ └── users_interface.py ├── mutter_display.py ├── network.py ├── ntp.py ├── payload │ ├── Makefile.am │ ├── __init__.py │ ├── base.py │ ├── dnf │ │ ├── Makefile.am │ │ ├── __init__.py │ │ └── payload.py │ ├── image.py │ ├── live │ │ ├── Makefile.am │ │ ├── __init__.py │ │ ├── payload_liveimg.py │ │ └── payload_liveos.py │ ├── manager.py │ ├── migrated.py │ ├── rpmostreepayload.py │ └── utils.py ├── queuefactory.py ├── rescue.py ├── screensaver.py ├── startup_utils.py ├── timezone.py ├── ui │ ├── Makefile.am │ ├── __init__.py │ ├── categories │ │ ├── Makefile.am │ │ ├── __init__.py │ │ ├── customization.py │ │ ├── localization.py │ │ ├── software.py │ │ ├── system.py │ │ └── user_settings.py │ ├── common.py │ ├── communication.py │ ├── context.py │ ├── gui │ │ ├── Makefile.am │ │ ├── TODO │ │ ├── __init__.py │ │ ├── helpers.py │ │ ├── hubs │ │ │ ├── Makefile.am │ │ │ ├── __init__.py │ │ │ ├── summary.glade │ │ │ └── summary.py │ │ ├── main.glade │ │ ├── spokes │ │ │ ├── Makefile.am │ │ │ ├── __init__.py │ │ │ ├── advanced_storage.glade │ │ │ ├── advanced_storage.py │ │ │ ├── advanced_user.glade │ │ │ ├── advstorage │ │ │ │ ├── Makefile.am │ │ │ │ ├── __init__.py │ │ │ │ ├── dasd.glade │ │ │ │ ├── dasd.py │ │ │ │ ├── fcoe.glade │ │ │ │ ├── fcoe.py │ │ │ │ ├── iscsi.glade │ │ │ │ ├── iscsi.py │ │ │ │ ├── zfcp.glade │ │ │ │ └── zfcp.py │ │ │ ├── blivet_gui.glade │ │ │ ├── blivet_gui.py │ │ │ ├── custom_storage.glade │ │ │ ├── custom_storage.py │ │ │ ├── datetime_spoke.glade │ │ │ ├── datetime_spoke.py │ │ │ ├── installation_progress.glade │ │ │ ├── installation_progress.py │ │ │ ├── installation_source.glade │ │ │ ├── installation_source.py │ │ │ ├── keyboard.glade │ │ │ ├── keyboard.py │ │ │ ├── language_support.glade │ │ │ ├── language_support.py │ │ │ ├── lib │ │ │ │ ├── Makefile.am │ │ │ │ ├── __init__.py │ │ │ │ ├── accordion.py │ │ │ │ ├── additional_repositories.py │ │ │ │ ├── beta_warning_dialog.glade │ │ │ │ ├── beta_warning_dialog.py │ │ │ │ ├── cart.glade │ │ │ │ ├── cart.py │ │ │ │ ├── custom_storage_helpers.glade │ │ │ │ ├── custom_storage_helpers.py │ │ │ │ ├── dasdfmt.glade │ │ │ │ ├── dasdfmt.py │ │ │ │ ├── detailederror.glade │ │ │ │ ├── detailederror.py │ │ │ │ ├── installation_source_helpers.glade │ │ │ │ ├── installation_source_helpers.py │ │ │ │ ├── lang_locale_handler.py │ │ │ │ ├── network_secret_agent.glade │ │ │ │ ├── network_secret_agent.py │ │ │ │ ├── ntp_dialog.glade │ │ │ │ ├── ntp_dialog.py │ │ │ │ ├── passphrase.glade │ │ │ │ ├── passphrase.py │ │ │ │ ├── refresh.glade │ │ │ │ ├── refresh.py │ │ │ │ ├── resize.glade │ │ │ │ ├── resize.py │ │ │ │ ├── software_selection.py │ │ │ │ ├── storage_dialogs.glade │ │ │ │ ├── storage_dialogs.py │ │ │ │ ├── subscription.py │ │ │ │ ├── summary.glade │ │ │ │ └── summary.py │ │ │ ├── network.glade │ │ │ ├── network.py │ │ │ ├── root_password.glade │ │ │ ├── root_password.py │ │ │ ├── software_selection.glade │ │ │ ├── software_selection.py │ │ │ ├── storage.glade │ │ │ ├── storage.py │ │ │ ├── subscription.glade │ │ │ ├── subscription.py │ │ │ ├── user.glade │ │ │ ├── user.py │ │ │ ├── welcome.glade │ │ │ └── welcome.py │ │ ├── utils.py │ │ └── xkl_wrapper.py │ ├── helpers.py │ ├── lib │ │ ├── Makefile.am │ │ ├── __init__.py │ │ ├── addons.py │ │ ├── format_dasd.py │ │ ├── payload.py │ │ ├── services.py │ │ ├── software.py │ │ ├── space.py │ │ ├── storage.py │ │ ├── subscription.py │ │ └── users.py │ ├── tui │ │ ├── Makefile.am │ │ ├── __init__.py │ │ ├── hubs │ │ │ ├── Makefile.am │ │ │ ├── __init__.py │ │ │ └── summary.py │ │ ├── signals.py │ │ ├── spokes │ │ │ ├── Makefile.am │ │ │ ├── __init__.py │ │ │ ├── askrd.py │ │ │ ├── installation_progress.py │ │ │ ├── installation_source.py │ │ │ ├── kernel_warning.py │ │ │ ├── language_support.py │ │ │ ├── network.py │ │ │ ├── root_password.py │ │ │ ├── shell_spoke.py │ │ │ ├── software_selection.py │ │ │ ├── storage.py │ │ │ ├── time_spoke.py │ │ │ └── user.py │ │ └── tuiobject.py │ └── webui │ │ ├── Makefile.am │ │ └── __init__.py └── version.py.in ├── pyproject.toml ├── rpmlint.toml ├── scripts ├── Makefile.am ├── anaconda-cleanup ├── anaconda-disable-nm-ibft-plugin ├── anaconda-import-initramfs-certs ├── anaconda-nm-disable-autocons ├── anaconda-pre-log-gen ├── apply-updates ├── define-matrix.py ├── handle-sshpw ├── instperf ├── instperf.p ├── jinja-render ├── log-capture ├── makebumpver ├── makeupdates ├── rhel_version.py ├── rhel_version.py.j2 ├── run-anaconda ├── run-in-new-session ├── start-module └── testing │ ├── check-container-age.sh │ ├── install_dependencies.sh │ ├── rebuild_iso │ └── update_iso ├── tests ├── Makefile.am ├── README.rst ├── __init__.py ├── conftest.py ├── cppcheck │ ├── runcppcheck.sh │ └── suppression-list.txt ├── gettext_tests │ ├── __init__.py │ ├── canary_tests.sh │ ├── click.py │ ├── contexts.py │ └── style_guide.py ├── glade_tests │ ├── __init__.py │ ├── glade_tests.sh │ ├── test_format_string.py │ ├── test_glade_validity.py │ ├── test_hidden_translatable.py │ ├── test_icons.py │ ├── test_invisible_char.py │ ├── test_markup.py │ ├── test_mnemonics.py │ ├── test_pw_visibility.py │ └── test_viewport.py ├── lib │ ├── __init__.py │ ├── filelist.py │ ├── gladecheck.py │ ├── iconcheck.py │ ├── regexcheck.py │ ├── shutup.py │ └── timer.py ├── pylint │ ├── censorship.py │ ├── pylintrc │ ├── runpylint │ └── runpylint.py ├── rpm_tests │ ├── __init__.py │ ├── rpm_tests.sh │ └── test_create_rpm.py ├── ruff │ ├── ruff.toml │ └── run_ruff.sh ├── shellcheck │ ├── ignores.sh │ └── run_shellcheck.sh ├── testenv.sh ├── unit_tests │ ├── __init__.py │ ├── dd_tests │ │ ├── __init__.py │ │ └── test_dd.py │ ├── dracut_tests │ │ ├── __init__.py │ │ ├── test_dracut_source.py │ │ ├── test_driver_updates.py │ │ └── test_parse_kickstart.py │ ├── pyanaconda_tests │ │ ├── __init__.py │ │ ├── core │ │ │ ├── __init__.py │ │ │ ├── test_configuration.py │ │ │ ├── test_dbus.py │ │ │ ├── test_hw.py │ │ │ ├── test_kernel.py │ │ │ ├── test_live_user.py │ │ │ ├── test_path.py │ │ │ ├── test_product.py │ │ │ ├── test_profile.py │ │ │ ├── test_services.py │ │ │ ├── test_signal.py │ │ │ ├── test_startup_utils.py │ │ │ ├── test_storage.py │ │ │ ├── test_string.py │ │ │ ├── test_threads.py │ │ │ ├── test_user.py │ │ │ ├── test_user_create.py │ │ │ └── test_util.py │ │ ├── modules │ │ │ ├── __init__.py │ │ │ ├── boss │ │ │ │ ├── __init__.py │ │ │ │ ├── test_boss.py │ │ │ │ ├── test_copy_logs_task.py │ │ │ │ ├── test_install.py │ │ │ │ ├── test_install_category.py │ │ │ │ ├── test_kickstart.py │ │ │ │ ├── test_kickstart_dispatcher.py │ │ │ │ ├── test_modules.py │ │ │ │ ├── test_observer.py │ │ │ │ └── test_set_file_contexts_task.py │ │ │ ├── common │ │ │ │ ├── __init__.py │ │ │ │ ├── test_base.py │ │ │ │ ├── test_error.py │ │ │ │ ├── test_policy.py │ │ │ │ ├── test_requirements.py │ │ │ │ ├── test_secret_data.py │ │ │ │ ├── test_services.py │ │ │ │ ├── test_tasks.py │ │ │ │ └── test_util.py │ │ │ ├── localization │ │ │ │ ├── __init__.py │ │ │ │ ├── test_live_keyboard.py │ │ │ │ ├── test_localed_wrapper.py │ │ │ │ ├── test_module_localization.py │ │ │ │ └── test_module_localization_tasks.py │ │ │ ├── network │ │ │ │ ├── __init__.py │ │ │ │ ├── test_module_network.py │ │ │ │ ├── test_module_network_config_file.py │ │ │ │ ├── test_module_network_nm_client.py │ │ │ │ └── test_network_utils.py │ │ │ ├── payloads │ │ │ │ ├── __init__.py │ │ │ │ ├── payload │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── module_payload_shared.py │ │ │ │ │ ├── test_dnf_initialization.py │ │ │ │ │ ├── test_dnf_repositories.py │ │ │ │ │ ├── test_dnf_tree_info.py │ │ │ │ │ ├── test_dnf_validation.py │ │ │ │ │ ├── test_flatpak_manager.py │ │ │ │ │ ├── test_image_installation.py │ │ │ │ │ ├── test_module_payload_dnf.py │ │ │ │ │ ├── test_module_payload_dnf_installation.py │ │ │ │ │ ├── test_module_payload_dnf_manager.py │ │ │ │ │ ├── test_module_payload_dnf_requirements.py │ │ │ │ │ ├── test_module_payload_dnf_utils.py │ │ │ │ │ ├── test_module_payload_factory.py │ │ │ │ │ ├── test_module_payload_flatpak.py │ │ │ │ │ ├── test_module_payload_flatpak_manager.py │ │ │ │ │ ├── test_module_payload_flatpak_source.py │ │ │ │ │ ├── test_module_payload_flatpak_tasks.py │ │ │ │ │ ├── test_module_payload_flatpak_utils.py │ │ │ │ │ ├── test_module_payload_live.py │ │ │ │ │ ├── test_module_payload_live_image.py │ │ │ │ │ ├── test_module_payload_live_os.py │ │ │ │ │ ├── test_rpm_ostree.py │ │ │ │ │ ├── test_rpm_ostree_flatpak.py │ │ │ │ │ ├── test_rpm_ostree_tasks.py │ │ │ │ │ └── test_rpm_ostree_util.py │ │ │ │ ├── source │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_source_base.py │ │ │ │ │ ├── test_source_bootc.py │ │ │ │ │ ├── test_source_cdn.py │ │ │ │ │ ├── test_source_cdrom.py │ │ │ │ │ ├── test_source_closest_mirror.py │ │ │ │ │ ├── test_source_factory.py │ │ │ │ │ ├── test_source_flatpak.py │ │ │ │ │ ├── test_source_harddrive.py │ │ │ │ │ ├── test_source_hmc.py │ │ │ │ │ ├── test_source_live_image.py │ │ │ │ │ ├── test_source_live_os.py │ │ │ │ │ ├── test_source_live_tar.py │ │ │ │ │ ├── test_source_nfs.py │ │ │ │ │ ├── test_source_repo_files.py │ │ │ │ │ ├── test_source_repo_path.py │ │ │ │ │ ├── test_source_rpm_ostree.py │ │ │ │ │ ├── test_source_rpm_ostree_container.py │ │ │ │ │ ├── test_source_url.py │ │ │ │ │ └── test_source_utils.py │ │ │ │ ├── test_module_payload_base_utils.py │ │ │ │ └── test_module_payloads.py │ │ │ ├── runtime │ │ │ │ ├── __init__.py │ │ │ │ ├── test_module_runtime.py │ │ │ │ └── test_module_ui.py │ │ │ ├── security │ │ │ │ ├── __init__.py │ │ │ │ ├── test_module_certificates.py │ │ │ │ └── test_module_security.py │ │ │ ├── storage │ │ │ │ ├── __init__.py │ │ │ │ ├── partitioning │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_module_part_automatic.py │ │ │ │ │ ├── test_module_part_blivet.py │ │ │ │ │ ├── test_module_part_custom.py │ │ │ │ │ ├── test_module_part_factory.py │ │ │ │ │ ├── test_module_part_interactive.py │ │ │ │ │ ├── test_module_part_manual.py │ │ │ │ │ ├── test_module_part_specification.py │ │ │ │ │ ├── test_module_resizable.py │ │ │ │ │ └── test_module_scheduler.py │ │ │ │ ├── test_clearpart.py │ │ │ │ ├── test_fsset.py │ │ │ │ ├── test_grub_raid.py │ │ │ │ ├── test_initialization.py │ │ │ │ ├── test_model.py │ │ │ │ ├── test_module_bootloader.py │ │ │ │ ├── test_module_dasd.py │ │ │ │ ├── test_module_device_tree.py │ │ │ │ ├── test_module_disk_init.py │ │ │ │ ├── test_module_disk_select.py │ │ │ │ ├── test_module_fcoe.py │ │ │ │ ├── test_module_iscsi.py │ │ │ │ ├── test_module_nvme.py │ │ │ │ ├── test_module_snapshot.py │ │ │ │ ├── test_module_storage.py │ │ │ │ ├── test_module_storage_bootloader_args.py │ │ │ │ ├── test_module_storage_checker.py │ │ │ │ ├── test_module_zfcp.py │ │ │ │ ├── test_platform.py │ │ │ │ └── test_storage_checker.py │ │ │ ├── subscription │ │ │ │ ├── __init__.py │ │ │ │ ├── test_rhsm_observer.py │ │ │ │ ├── test_subscription.py │ │ │ │ ├── test_subscription_tasks.py │ │ │ │ └── test_system_purpose.py │ │ │ ├── timezone │ │ │ │ ├── __init__.py │ │ │ │ ├── test_module_timezone.py │ │ │ │ ├── test_timezone_geoloc.py │ │ │ │ └── test_timezone_tasks.py │ │ │ └── users │ │ │ │ ├── __init__.py │ │ │ │ └── test_module_users.py │ │ ├── test_argparse.py │ │ ├── test_controller.py │ │ ├── test_installation_tasks.py │ │ ├── test_kexec.py │ │ ├── test_keyboard.py │ │ ├── test_kickstart_specification.py │ │ ├── test_ks_version.py │ │ ├── test_localization.py │ │ ├── test_network.py │ │ ├── test_password_quality.py │ │ ├── test_payload.py │ │ ├── test_secret_agent.py │ │ ├── test_simple_import.py │ │ ├── test_subscription_helpers.py │ │ ├── test_timezone.py │ │ └── ui │ │ │ ├── __init__.py │ │ │ ├── test_common_code.py │ │ │ ├── test_rdp.py │ │ │ ├── test_simple_ui.py │ │ │ ├── test_software.py │ │ │ ├── test_subscription_spoke.py │ │ │ ├── test_ui_custom_spoke.py │ │ │ ├── test_ui_payload.py │ │ │ ├── test_ui_source_spoke.py │ │ │ ├── test_ui_users.py │ │ │ └── test_webui.py │ ├── regex_tests │ │ ├── __init__.py │ │ ├── test_dasd_name.py │ │ ├── test_groupparse.py │ │ ├── test_hostname.py │ │ ├── test_ibft_device_name.py │ │ ├── test_initamfs_con_name.py │ │ ├── test_iscsi_name.py │ │ ├── test_netmask.py │ │ ├── test_repo_name.py │ │ ├── test_url.py │ │ ├── test_username.py │ │ └── test_zfcp_name.py │ ├── shell_tests │ │ ├── __init__.py │ │ └── test_dracut_anaconda-lib.py │ └── unit_tests.sh ├── usercustomize.py └── vulture │ └── run_vulture.sh ├── translation-canary ├── .gitignore ├── COPYING ├── Makefile ├── README.rst ├── tests │ ├── project-tests │ │ ├── project_list.txt │ │ └── test_projects.sh │ ├── pylint │ │ └── runpylint.py │ └── unittests │ │ ├── test_translatable.py │ │ └── test_translated.py ├── translation_canary │ ├── __init__.py │ ├── translatable │ │ ├── __init__.py │ │ ├── __main__.py │ │ ├── test_comment.py │ │ └── test_markup.py │ └── translated │ │ ├── __init__.py │ │ ├── __main__.py │ │ ├── test_markup.py │ │ ├── test_percentage.py │ │ └── test_usability.py └── xgettext_werror.sh └── widgets ├── Makefile.am ├── acinclude.m4 ├── autogen.sh ├── configure.ac ├── doc ├── AnacondaWidgets-docs.xml ├── Makefile.am └── run-gtkdoc.sh ├── glade ├── AnacondaWidgets.xml ├── Makefile.am └── glade-adaptor.c ├── python ├── AnacondaWidgets.py └── Makefile.am └── src ├── BaseStandalone.c ├── BaseStandalone.h ├── BaseWindow.c ├── BaseWindow.h ├── DiskOverview.c ├── DiskOverview.h ├── HubWindow.c ├── HubWindow.h ├── LayoutIndicator.c ├── LayoutIndicator.h ├── Makefile.am ├── MountpointSelector.c ├── MountpointSelector.h ├── SpokeSelector.c ├── SpokeSelector.h ├── SpokeWindow.c ├── SpokeWindow.h ├── StandaloneWindow.c ├── StandaloneWindow.h ├── dbus └── org.fedoraproject.Anaconda.Modules.Localization.xml ├── intl.h ├── resources ├── BaseWindow-beta-label.css ├── BaseWindow-distro-label.css ├── BaseWindow-name-label.css ├── DiskOverview-capacity.css ├── DiskOverview-description.css ├── DiskOverview-free.css ├── DiskOverview-name.css ├── LayoutIndicator-label.css ├── LayoutIndicator.css ├── MountpointSelector-mountpoint.css ├── MountpointSelector-name.css ├── MountpointSelector-size.css ├── SpokeSelector-status.css ├── SpokeSelector-title.css ├── anaconda-selected-icon.svg ├── dialog-warning-symbolic.svg ├── left-arrow-icon.png └── right-arrow-icon.png ├── widgets-common.c └── widgets-common.h /.branch-variables.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/.branch-variables.yml -------------------------------------------------------------------------------- /.codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/.codecov.yml -------------------------------------------------------------------------------- /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/.coveragerc -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/labeler.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/.github/labeler.yml -------------------------------------------------------------------------------- /.github/labeler.yml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/.github/labeler.yml.j2 -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/.github/workflows/README.md -------------------------------------------------------------------------------- /.github/workflows/autolabel.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/.github/workflows/autolabel.yml -------------------------------------------------------------------------------- /.github/workflows/build-image.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/.github/workflows/build-image.yml -------------------------------------------------------------------------------- /.github/workflows/build-image.yml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/.github/workflows/build-image.yml.j2 -------------------------------------------------------------------------------- /.github/workflows/container-autoupdate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/.github/workflows/container-autoupdate.yml -------------------------------------------------------------------------------- /.github/workflows/container-autoupdate.yml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/.github/workflows/container-autoupdate.yml.j2 -------------------------------------------------------------------------------- /.github/workflows/container-rebuild-action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/.github/workflows/container-rebuild-action.yml -------------------------------------------------------------------------------- /.github/workflows/define-matrix.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/.github/workflows/define-matrix.yml -------------------------------------------------------------------------------- /.github/workflows/differential-shellcheck.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/.github/workflows/differential-shellcheck.yml -------------------------------------------------------------------------------- /.github/workflows/infra-check.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/.github/workflows/infra-check.yml -------------------------------------------------------------------------------- /.github/workflows/kickstart-tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/.github/workflows/kickstart-tests.yml -------------------------------------------------------------------------------- /.github/workflows/kickstart-tests.yml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/.github/workflows/kickstart-tests.yml.j2 -------------------------------------------------------------------------------- /.github/workflows/l10n-po-update.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/.github/workflows/l10n-po-update.yml -------------------------------------------------------------------------------- /.github/workflows/l10n-po-update.yml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/.github/workflows/l10n-po-update.yml.j2 -------------------------------------------------------------------------------- /.github/workflows/push-tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/.github/workflows/push-tests.yml -------------------------------------------------------------------------------- /.github/workflows/push-tests.yml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/.github/workflows/push-tests.yml.j2 -------------------------------------------------------------------------------- /.github/workflows/release-automatically.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/.github/workflows/release-automatically.yml -------------------------------------------------------------------------------- /.github/workflows/release-automatically.yml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/.github/workflows/release-automatically.yml.j2 -------------------------------------------------------------------------------- /.github/workflows/release-from-tag.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/.github/workflows/release-from-tag.yml -------------------------------------------------------------------------------- /.github/workflows/release-notes.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/.github/workflows/release-notes.yml -------------------------------------------------------------------------------- /.github/workflows/stale-pull-requests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/.github/workflows/stale-pull-requests.yml -------------------------------------------------------------------------------- /.github/workflows/stale-pull-requests.yml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/.github/workflows/stale-pull-requests.yml.j2 -------------------------------------------------------------------------------- /.github/workflows/template-check.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/.github/workflows/template-check.yml -------------------------------------------------------------------------------- /.github/workflows/tests-daily.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/.github/workflows/tests-daily.yml -------------------------------------------------------------------------------- /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /.github/workflows/trigger-webui.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/.github/workflows/trigger-webui.yml -------------------------------------------------------------------------------- /.github/workflows/try-release-daily.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/.github/workflows/try-release-daily.yml -------------------------------------------------------------------------------- /.github/workflows/try-release-daily.yml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/.github/workflows/try-release-daily.yml.j2 -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.packit.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/.packit.yml -------------------------------------------------------------------------------- /.packit.yml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/.packit.yml.j2 -------------------------------------------------------------------------------- /.pep8speaks.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/.pep8speaks.yml -------------------------------------------------------------------------------- /.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/.readthedocs.yaml -------------------------------------------------------------------------------- /.shellcheckrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/.shellcheckrc -------------------------------------------------------------------------------- /.structure-config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/.structure-config -------------------------------------------------------------------------------- /CONTRIBUTING.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/CONTRIBUTING.rst -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/COPYING -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/Makefile.am -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/README.rst -------------------------------------------------------------------------------- /acinclude.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/acinclude.m4 -------------------------------------------------------------------------------- /anaconda.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/anaconda.py -------------------------------------------------------------------------------- /anaconda.spec.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/anaconda.spec.in -------------------------------------------------------------------------------- /autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/autogen.sh -------------------------------------------------------------------------------- /branch-config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/branch-config.mk -------------------------------------------------------------------------------- /branch-config.mk.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/branch-config.mk.j2 -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/configure.ac -------------------------------------------------------------------------------- /data/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/data/Makefile.am -------------------------------------------------------------------------------- /data/anaconda-gtk.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/data/anaconda-gtk.css -------------------------------------------------------------------------------- /data/anaconda.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/data/anaconda.conf -------------------------------------------------------------------------------- /data/anaconda_options.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/data/anaconda_options.txt -------------------------------------------------------------------------------- /data/command-stubs/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/data/command-stubs/Makefile.am -------------------------------------------------------------------------------- /data/command-stubs/list-harddrives-stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/data/command-stubs/list-harddrives-stub -------------------------------------------------------------------------------- /data/conf.d/00-do-nothing.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/data/conf.d/00-do-nothing.conf -------------------------------------------------------------------------------- /data/conf.d/01-still-do-nothing.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/data/conf.d/01-still-do-nothing.conf -------------------------------------------------------------------------------- /data/conf.d/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/data/conf.d/Makefile.am -------------------------------------------------------------------------------- /data/conf.d/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/data/conf.d/README -------------------------------------------------------------------------------- /data/dbus/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/data/dbus/Makefile.am -------------------------------------------------------------------------------- /data/dbus/anaconda-bus.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/data/dbus/anaconda-bus.conf -------------------------------------------------------------------------------- /data/dbus/org.fedoraproject.Anaconda.Boss.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/data/dbus/org.fedoraproject.Anaconda.Boss.conf -------------------------------------------------------------------------------- /data/dbus/org.fedoraproject.Anaconda.Boss.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/data/dbus/org.fedoraproject.Anaconda.Boss.service -------------------------------------------------------------------------------- /data/gtk-4.0/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/data/gtk-4.0/Makefile.am -------------------------------------------------------------------------------- /data/gtk-4.0/settings.ini: -------------------------------------------------------------------------------- 1 | [Settings] 2 | gtk-decoration-layout=:close 3 | -------------------------------------------------------------------------------- /data/interactive-defaults.ks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/data/interactive-defaults.ks -------------------------------------------------------------------------------- /data/liveinst/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/data/liveinst/Makefile.am -------------------------------------------------------------------------------- /data/liveinst/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/data/liveinst/README -------------------------------------------------------------------------------- /data/liveinst/gnome/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/data/liveinst/gnome/Makefile.am -------------------------------------------------------------------------------- /data/liveinst/gnome/fedora-welcome.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/data/liveinst/gnome/fedora-welcome.js -------------------------------------------------------------------------------- /data/liveinst/liveinst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/data/liveinst/liveinst -------------------------------------------------------------------------------- /data/liveinst/liveinst-setup.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/data/liveinst/liveinst-setup.desktop -------------------------------------------------------------------------------- /data/liveinst/liveinst-setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/data/liveinst/liveinst-setup.sh -------------------------------------------------------------------------------- /data/liveinst/liveinst.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/data/liveinst/liveinst.desktop -------------------------------------------------------------------------------- /data/liveinst/locale1-x11-sync: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/data/liveinst/locale1-x11-sync -------------------------------------------------------------------------------- /data/liveinst/locale1-x11-sync.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/data/liveinst/locale1-x11-sync.service -------------------------------------------------------------------------------- /data/pam/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/data/pam/Makefile.am -------------------------------------------------------------------------------- /data/pam/anaconda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/data/pam/anaconda -------------------------------------------------------------------------------- /data/pixmaps/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/data/pixmaps/Makefile.am -------------------------------------------------------------------------------- /data/pixmaps/anaconda-password-show-off.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/data/pixmaps/anaconda-password-show-off.svg -------------------------------------------------------------------------------- /data/pixmaps/anaconda-password-show-on.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/data/pixmaps/anaconda-password-show-on.svg -------------------------------------------------------------------------------- /data/profile.d/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/data/profile.d/Makefile.am -------------------------------------------------------------------------------- /data/profile.d/almalinux.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/data/profile.d/almalinux.conf -------------------------------------------------------------------------------- /data/profile.d/centos.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/data/profile.d/centos.conf -------------------------------------------------------------------------------- /data/profile.d/circle.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/data/profile.d/circle.conf -------------------------------------------------------------------------------- /data/profile.d/fedora-designsuite.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/data/profile.d/fedora-designsuite.conf -------------------------------------------------------------------------------- /data/profile.d/fedora-eln.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/data/profile.d/fedora-eln.conf -------------------------------------------------------------------------------- /data/profile.d/fedora-iot.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/data/profile.d/fedora-iot.conf -------------------------------------------------------------------------------- /data/profile.d/fedora-kde.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/data/profile.d/fedora-kde.conf -------------------------------------------------------------------------------- /data/profile.d/fedora-kinoite.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/data/profile.d/fedora-kinoite.conf -------------------------------------------------------------------------------- /data/profile.d/fedora-sericea.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/data/profile.d/fedora-sericea.conf -------------------------------------------------------------------------------- /data/profile.d/fedora-server.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/data/profile.d/fedora-server.conf -------------------------------------------------------------------------------- /data/profile.d/fedora-silverblue.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/data/profile.d/fedora-silverblue.conf -------------------------------------------------------------------------------- /data/profile.d/fedora-workstation.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/data/profile.d/fedora-workstation.conf -------------------------------------------------------------------------------- /data/profile.d/fedora.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/data/profile.d/fedora.conf -------------------------------------------------------------------------------- /data/profile.d/navix.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/data/profile.d/navix.conf -------------------------------------------------------------------------------- /data/profile.d/ovirt.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/data/profile.d/ovirt.conf -------------------------------------------------------------------------------- /data/profile.d/rhel.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/data/profile.d/rhel.conf -------------------------------------------------------------------------------- /data/profile.d/rhvh.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/data/profile.d/rhvh.conf -------------------------------------------------------------------------------- /data/profile.d/rocky.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/data/profile.d/rocky.conf -------------------------------------------------------------------------------- /data/profile.d/scientific-linux.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/data/profile.d/scientific-linux.conf -------------------------------------------------------------------------------- /data/profile.d/virtuozzo-linux.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/data/profile.d/virtuozzo-linux.conf -------------------------------------------------------------------------------- /data/systemd/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/data/systemd/Makefile.am -------------------------------------------------------------------------------- /data/systemd/anaconda-direct.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/data/systemd/anaconda-direct.service -------------------------------------------------------------------------------- /data/systemd/anaconda-fips.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/data/systemd/anaconda-fips.service -------------------------------------------------------------------------------- /data/systemd/anaconda-generator: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/data/systemd/anaconda-generator -------------------------------------------------------------------------------- /data/systemd/anaconda-nm-config.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/data/systemd/anaconda-nm-config.service -------------------------------------------------------------------------------- /data/systemd/anaconda-nm-disable-autocons.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/data/systemd/anaconda-nm-disable-autocons.service -------------------------------------------------------------------------------- /data/systemd/anaconda-noshell.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/data/systemd/anaconda-noshell.service -------------------------------------------------------------------------------- /data/systemd/anaconda-pre.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/data/systemd/anaconda-pre.service -------------------------------------------------------------------------------- /data/systemd/anaconda-shell@.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/data/systemd/anaconda-shell@.service -------------------------------------------------------------------------------- /data/systemd/anaconda-sshd.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/data/systemd/anaconda-sshd.service -------------------------------------------------------------------------------- /data/systemd/anaconda-tmux@.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/data/systemd/anaconda-tmux@.service -------------------------------------------------------------------------------- /data/systemd/anaconda.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/data/systemd/anaconda.service -------------------------------------------------------------------------------- /data/systemd/anaconda.target: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/data/systemd/anaconda.target -------------------------------------------------------------------------------- /data/systemd/instperf.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/data/systemd/instperf.service -------------------------------------------------------------------------------- /data/tmux.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/data/tmux.conf -------------------------------------------------------------------------------- /data/window-manager/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/data/window-manager/Makefile.am -------------------------------------------------------------------------------- /data/window-manager/config/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/data/window-manager/config/Makefile.am -------------------------------------------------------------------------------- /dockerfile/anaconda-ci/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/dockerfile/anaconda-ci/Dockerfile -------------------------------------------------------------------------------- /dockerfile/anaconda-ci/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/dockerfile/anaconda-ci/requirements.txt -------------------------------------------------------------------------------- /dockerfile/anaconda-ci/run-build-and-arg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/dockerfile/anaconda-ci/run-build-and-arg -------------------------------------------------------------------------------- /dockerfile/anaconda-iso-creator/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/dockerfile/anaconda-iso-creator/Dockerfile -------------------------------------------------------------------------------- /dockerfile/anaconda-iso-creator/lorax-build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/dockerfile/anaconda-iso-creator/lorax-build -------------------------------------------------------------------------------- /dockerfile/anaconda-iso-creator/lorax-build-webui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/dockerfile/anaconda-iso-creator/lorax-build-webui -------------------------------------------------------------------------------- /dockerfile/anaconda-iso-creator/lorax-build.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/dockerfile/anaconda-iso-creator/lorax-build.j2 -------------------------------------------------------------------------------- /dockerfile/anaconda-live-iso-creator/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/dockerfile/anaconda-live-iso-creator/Dockerfile -------------------------------------------------------------------------------- /dockerfile/anaconda-live-iso-creator/Dockerfile.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/dockerfile/anaconda-live-iso-creator/Dockerfile.j2 -------------------------------------------------------------------------------- /dockerfile/anaconda-live-iso-creator/lmc-build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/dockerfile/anaconda-live-iso-creator/lmc-build -------------------------------------------------------------------------------- /dockerfile/anaconda-live-iso-creator/lmc-build.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/dockerfile/anaconda-live-iso-creator/lmc-build.j2 -------------------------------------------------------------------------------- /dockerfile/anaconda-release/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/dockerfile/anaconda-release/Dockerfile -------------------------------------------------------------------------------- /dockerfile/anaconda-rpm/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/dockerfile/anaconda-rpm/Dockerfile -------------------------------------------------------------------------------- /dockerfile/anaconda-rpm/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/dockerfile/anaconda-rpm/requirements.txt -------------------------------------------------------------------------------- /docs/.gitignore: -------------------------------------------------------------------------------- 1 | api 2 | kickstart-docs.* 3 | html/ 4 | contributing.rst 5 | -------------------------------------------------------------------------------- /docs/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/docs/Makefile.am -------------------------------------------------------------------------------- /docs/_static/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/docs/_static/custom.css -------------------------------------------------------------------------------- /docs/boot-options.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/docs/boot-options.rst -------------------------------------------------------------------------------- /docs/ci-status.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/docs/ci-status.rst -------------------------------------------------------------------------------- /docs/common-bugs.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/docs/common-bugs.rst -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/developer.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/docs/developer.rst -------------------------------------------------------------------------------- /docs/developer/commit-log.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/docs/developer/commit-log.rst -------------------------------------------------------------------------------- /docs/developer/configuration-files.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/docs/developer/configuration-files.rst -------------------------------------------------------------------------------- /docs/developer/driverdisc.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/docs/developer/driverdisc.rst -------------------------------------------------------------------------------- /docs/developer/drop-in-scripts.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/docs/developer/drop-in-scripts.rst -------------------------------------------------------------------------------- /docs/developer/iscsi.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/docs/developer/iscsi.rst -------------------------------------------------------------------------------- /docs/developer/keyboard-control.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/docs/developer/keyboard-control.rst -------------------------------------------------------------------------------- /docs/developer/lorax-template-patching.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/docs/developer/lorax-template-patching.rst -------------------------------------------------------------------------------- /docs/developer/mount-points.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/docs/developer/mount-points.rst -------------------------------------------------------------------------------- /docs/developer/multipath.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/docs/developer/multipath.rst -------------------------------------------------------------------------------- /docs/developer/sysconfig-file.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/docs/developer/sysconfig-file.rst -------------------------------------------------------------------------------- /docs/developer/testing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/docs/developer/testing.rst -------------------------------------------------------------------------------- /docs/developer/unified-repositories.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/docs/developer/unified-repositories.rst -------------------------------------------------------------------------------- /docs/generate_modules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/docs/generate_modules.py -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/intro.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/docs/intro.rst -------------------------------------------------------------------------------- /docs/kickstart.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/docs/kickstart.rst -------------------------------------------------------------------------------- /docs/list-harddrives.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/docs/list-harddrives.rst -------------------------------------------------------------------------------- /docs/release-notes.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/docs/release-notes.rst -------------------------------------------------------------------------------- /docs/release-notes/flatpak-inital-support.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/docs/release-notes/flatpak-inital-support.rst -------------------------------------------------------------------------------- /docs/release-notes/home-reuse-mbr.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/docs/release-notes/home-reuse-mbr.rst -------------------------------------------------------------------------------- /docs/release-notes/kickstart-rdp-command.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/docs/release-notes/kickstart-rdp-command.rst -------------------------------------------------------------------------------- /docs/release-notes/template.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/docs/release-notes/template.rst -------------------------------------------------------------------------------- /docs/release.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/docs/release.rst -------------------------------------------------------------------------------- /docs/reporting.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/docs/reporting.rst -------------------------------------------------------------------------------- /docs/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/docs/requirements.txt -------------------------------------------------------------------------------- /docs/rescue.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/docs/rescue.rst -------------------------------------------------------------------------------- /dracut/.shellcheckrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/dracut/.shellcheckrc -------------------------------------------------------------------------------- /dracut/20_rw_usr.conf: -------------------------------------------------------------------------------- 1 | [Manager] 2 | ProtectSystem=no 3 | -------------------------------------------------------------------------------- /dracut/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/dracut/Makefile.am -------------------------------------------------------------------------------- /dracut/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/dracut/README -------------------------------------------------------------------------------- /dracut/README-driver-updates.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/dracut/README-driver-updates.md -------------------------------------------------------------------------------- /dracut/README-testing-changes.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/dracut/README-testing-changes.rst -------------------------------------------------------------------------------- /dracut/anaconda-copy-certs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/dracut/anaconda-copy-certs.sh -------------------------------------------------------------------------------- /dracut/anaconda-copy-cmdline.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/dracut/anaconda-copy-cmdline.sh -------------------------------------------------------------------------------- /dracut/anaconda-copy-dhclient.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/dracut/anaconda-copy-dhclient.sh -------------------------------------------------------------------------------- /dracut/anaconda-copy-ks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/dracut/anaconda-copy-ks.sh -------------------------------------------------------------------------------- /dracut/anaconda-copy-prefixdevname.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/dracut/anaconda-copy-prefixdevname.sh -------------------------------------------------------------------------------- /dracut/anaconda-depmod.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/dracut/anaconda-depmod.sh -------------------------------------------------------------------------------- /dracut/anaconda-diskroot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/dracut/anaconda-diskroot -------------------------------------------------------------------------------- /dracut/anaconda-dnsconfd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/dracut/anaconda-dnsconfd.sh -------------------------------------------------------------------------------- /dracut/anaconda-error-reporting.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/dracut/anaconda-error-reporting.sh -------------------------------------------------------------------------------- /dracut/anaconda-hmcroot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/dracut/anaconda-hmcroot -------------------------------------------------------------------------------- /dracut/anaconda-ifcfg.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/dracut/anaconda-ifcfg.sh -------------------------------------------------------------------------------- /dracut/anaconda-ifdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/dracut/anaconda-ifdown -------------------------------------------------------------------------------- /dracut/anaconda-ks-sendheaders.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/dracut/anaconda-ks-sendheaders.sh -------------------------------------------------------------------------------- /dracut/anaconda-lib.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/dracut/anaconda-lib.sh -------------------------------------------------------------------------------- /dracut/anaconda-modprobe.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/dracut/anaconda-modprobe.sh -------------------------------------------------------------------------------- /dracut/anaconda-netroot.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/dracut/anaconda-netroot.sh -------------------------------------------------------------------------------- /dracut/anaconda-nfsrepo-cleanup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/dracut/anaconda-nfsrepo-cleanup.sh -------------------------------------------------------------------------------- /dracut/anaconda-pre-shutdown.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/dracut/anaconda-pre-shutdown.sh -------------------------------------------------------------------------------- /dracut/anaconda-set-kernel-hung-timeout.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/dracut/anaconda-set-kernel-hung-timeout.sh -------------------------------------------------------------------------------- /dracut/anaconda-start-dnsconfd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/dracut/anaconda-start-dnsconfd.sh -------------------------------------------------------------------------------- /dracut/dd/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/dracut/dd/.gitignore -------------------------------------------------------------------------------- /dracut/dd/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/dracut/dd/Makefile.am -------------------------------------------------------------------------------- /dracut/dd/dd_extract.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/dracut/dd/dd_extract.c -------------------------------------------------------------------------------- /dracut/dd/dd_list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/dracut/dd/dd_list.c -------------------------------------------------------------------------------- /dracut/dd/dd_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/dracut/dd/dd_utils.h -------------------------------------------------------------------------------- /dracut/dd/rpmutils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/dracut/dd/rpmutils.c -------------------------------------------------------------------------------- /dracut/dd/rpmutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/dracut/dd/rpmutils.h -------------------------------------------------------------------------------- /dracut/driver-updates-genrules.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/dracut/driver-updates-genrules.sh -------------------------------------------------------------------------------- /dracut/driver-updates@.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/dracut/driver-updates@.service -------------------------------------------------------------------------------- /dracut/driver_updates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/dracut/driver_updates.py -------------------------------------------------------------------------------- /dracut/fetch-driver-net.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/dracut/fetch-driver-net.sh -------------------------------------------------------------------------------- /dracut/fetch-kickstart-disk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/dracut/fetch-kickstart-disk -------------------------------------------------------------------------------- /dracut/fetch-kickstart-net.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/dracut/fetch-kickstart-net.sh -------------------------------------------------------------------------------- /dracut/fetch-updates-disk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/dracut/fetch-updates-disk -------------------------------------------------------------------------------- /dracut/find-net-intfs-by-driver: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/dracut/find-net-intfs-by-driver -------------------------------------------------------------------------------- /dracut/kickstart-genrules.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/dracut/kickstart-genrules.sh -------------------------------------------------------------------------------- /dracut/kickstart_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/dracut/kickstart_version.py -------------------------------------------------------------------------------- /dracut/kickstart_version.py.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/dracut/kickstart_version.py.j2 -------------------------------------------------------------------------------- /dracut/module-setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/dracut/module-setup.sh -------------------------------------------------------------------------------- /dracut/parse-anaconda-dd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/dracut/parse-anaconda-dd.sh -------------------------------------------------------------------------------- /dracut/parse-anaconda-kickstart.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/dracut/parse-anaconda-kickstart.sh -------------------------------------------------------------------------------- /dracut/parse-anaconda-net.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/dracut/parse-anaconda-net.sh -------------------------------------------------------------------------------- /dracut/parse-anaconda-options.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/dracut/parse-anaconda-options.sh -------------------------------------------------------------------------------- /dracut/parse-anaconda-repo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/dracut/parse-anaconda-repo.sh -------------------------------------------------------------------------------- /dracut/parse-kickstart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/dracut/parse-kickstart -------------------------------------------------------------------------------- /dracut/python-deps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/dracut/python-deps -------------------------------------------------------------------------------- /dracut/repo-genrules.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/dracut/repo-genrules.sh -------------------------------------------------------------------------------- /dracut/save-initramfs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/dracut/save-initramfs.sh -------------------------------------------------------------------------------- /dracut/updates-genrules.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/dracut/updates-genrules.sh -------------------------------------------------------------------------------- /po/.gitignore: -------------------------------------------------------------------------------- 1 | *.mo 2 | *.po.new 3 | .po_downloaded 4 | -------------------------------------------------------------------------------- /po/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/po/Makefile.am -------------------------------------------------------------------------------- /po/l10n-config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/po/l10n-config.mk -------------------------------------------------------------------------------- /pyanaconda/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/Makefile.am -------------------------------------------------------------------------------- /pyanaconda/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyanaconda/anaconda.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/anaconda.py -------------------------------------------------------------------------------- /pyanaconda/anaconda_loggers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/anaconda_loggers.py -------------------------------------------------------------------------------- /pyanaconda/anaconda_logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/anaconda_logging.py -------------------------------------------------------------------------------- /pyanaconda/argument_parsing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/argument_parsing.py -------------------------------------------------------------------------------- /pyanaconda/core/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/core/Makefile.am -------------------------------------------------------------------------------- /pyanaconda/core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyanaconda/core/async_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/core/async_utils.py -------------------------------------------------------------------------------- /pyanaconda/core/configuration/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/core/configuration/Makefile.am -------------------------------------------------------------------------------- /pyanaconda/core/configuration/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyanaconda/core/configuration/anaconda.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/core/configuration/anaconda.py -------------------------------------------------------------------------------- /pyanaconda/core/configuration/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/core/configuration/base.py -------------------------------------------------------------------------------- /pyanaconda/core/configuration/bootloader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/core/configuration/bootloader.py -------------------------------------------------------------------------------- /pyanaconda/core/configuration/license.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/core/configuration/license.py -------------------------------------------------------------------------------- /pyanaconda/core/configuration/localization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/core/configuration/localization.py -------------------------------------------------------------------------------- /pyanaconda/core/configuration/network.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/core/configuration/network.py -------------------------------------------------------------------------------- /pyanaconda/core/configuration/payload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/core/configuration/payload.py -------------------------------------------------------------------------------- /pyanaconda/core/configuration/profile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/core/configuration/profile.py -------------------------------------------------------------------------------- /pyanaconda/core/configuration/security.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/core/configuration/security.py -------------------------------------------------------------------------------- /pyanaconda/core/configuration/storage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/core/configuration/storage.py -------------------------------------------------------------------------------- /pyanaconda/core/configuration/system.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/core/configuration/system.py -------------------------------------------------------------------------------- /pyanaconda/core/configuration/target.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/core/configuration/target.py -------------------------------------------------------------------------------- /pyanaconda/core/configuration/timezone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/core/configuration/timezone.py -------------------------------------------------------------------------------- /pyanaconda/core/configuration/ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/core/configuration/ui.py -------------------------------------------------------------------------------- /pyanaconda/core/configuration/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/core/configuration/utils.py -------------------------------------------------------------------------------- /pyanaconda/core/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/core/constants.py -------------------------------------------------------------------------------- /pyanaconda/core/dbus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/core/dbus.py -------------------------------------------------------------------------------- /pyanaconda/core/glib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/core/glib.py -------------------------------------------------------------------------------- /pyanaconda/core/hw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/core/hw.py -------------------------------------------------------------------------------- /pyanaconda/core/i18n.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/core/i18n.py -------------------------------------------------------------------------------- /pyanaconda/core/kernel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/core/kernel.py -------------------------------------------------------------------------------- /pyanaconda/core/kickstart/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/core/kickstart/Makefile.am -------------------------------------------------------------------------------- /pyanaconda/core/kickstart/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/core/kickstart/__init__.py -------------------------------------------------------------------------------- /pyanaconda/core/kickstart/addon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/core/kickstart/addon.py -------------------------------------------------------------------------------- /pyanaconda/core/kickstart/commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/core/kickstart/commands.py -------------------------------------------------------------------------------- /pyanaconda/core/kickstart/scripts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/core/kickstart/scripts.py -------------------------------------------------------------------------------- /pyanaconda/core/kickstart/specification.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/core/kickstart/specification.py -------------------------------------------------------------------------------- /pyanaconda/core/kickstart/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/core/kickstart/version.py -------------------------------------------------------------------------------- /pyanaconda/core/live_user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/core/live_user.py -------------------------------------------------------------------------------- /pyanaconda/core/path.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/core/path.py -------------------------------------------------------------------------------- /pyanaconda/core/payload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/core/payload.py -------------------------------------------------------------------------------- /pyanaconda/core/process_watchers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/core/process_watchers.py -------------------------------------------------------------------------------- /pyanaconda/core/product.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/core/product.py -------------------------------------------------------------------------------- /pyanaconda/core/regexes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/core/regexes.py -------------------------------------------------------------------------------- /pyanaconda/core/service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/core/service.py -------------------------------------------------------------------------------- /pyanaconda/core/signal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/core/signal.py -------------------------------------------------------------------------------- /pyanaconda/core/startup/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/core/startup/Makefile.am -------------------------------------------------------------------------------- /pyanaconda/core/startup/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyanaconda/core/startup/dbus_launcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/core/startup/dbus_launcher.py -------------------------------------------------------------------------------- /pyanaconda/core/storage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/core/storage.py -------------------------------------------------------------------------------- /pyanaconda/core/string.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/core/string.py -------------------------------------------------------------------------------- /pyanaconda/core/subscription.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/core/subscription.py -------------------------------------------------------------------------------- /pyanaconda/core/threads.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/core/threads.py -------------------------------------------------------------------------------- /pyanaconda/core/timer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/core/timer.py -------------------------------------------------------------------------------- /pyanaconda/core/users.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/core/users.py -------------------------------------------------------------------------------- /pyanaconda/core/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/core/util.py -------------------------------------------------------------------------------- /pyanaconda/display.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/display.py -------------------------------------------------------------------------------- /pyanaconda/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/errors.py -------------------------------------------------------------------------------- /pyanaconda/exception.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/exception.py -------------------------------------------------------------------------------- /pyanaconda/flags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/flags.py -------------------------------------------------------------------------------- /pyanaconda/gnome_remote_desktop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/gnome_remote_desktop.py -------------------------------------------------------------------------------- /pyanaconda/input_checking.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/input_checking.py -------------------------------------------------------------------------------- /pyanaconda/installation_tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/installation_tasks.py -------------------------------------------------------------------------------- /pyanaconda/kexec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/kexec.py -------------------------------------------------------------------------------- /pyanaconda/keyboard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/keyboard.py -------------------------------------------------------------------------------- /pyanaconda/kickstart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/kickstart.py -------------------------------------------------------------------------------- /pyanaconda/lifecycle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/lifecycle.py -------------------------------------------------------------------------------- /pyanaconda/localization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/localization.py -------------------------------------------------------------------------------- /pyanaconda/modules/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/modules/Makefile.am -------------------------------------------------------------------------------- /pyanaconda/modules/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyanaconda/modules/boss/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/modules/boss/Makefile.am -------------------------------------------------------------------------------- /pyanaconda/modules/boss/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyanaconda/modules/boss/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/modules/boss/__main__.py -------------------------------------------------------------------------------- /pyanaconda/modules/boss/boss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/modules/boss/boss.py -------------------------------------------------------------------------------- /pyanaconda/modules/boss/boss_interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/modules/boss/boss_interface.py -------------------------------------------------------------------------------- /pyanaconda/modules/boss/install_manager/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/modules/boss/install_manager/Makefile.am -------------------------------------------------------------------------------- /pyanaconda/modules/boss/install_manager/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/modules/boss/install_manager/__init__.py -------------------------------------------------------------------------------- /pyanaconda/modules/boss/installation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/modules/boss/installation.py -------------------------------------------------------------------------------- /pyanaconda/modules/boss/kickstart_manager/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/modules/boss/kickstart_manager/parser.py -------------------------------------------------------------------------------- /pyanaconda/modules/boss/module_manager/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/modules/boss/module_manager/Makefile.am -------------------------------------------------------------------------------- /pyanaconda/modules/boss/module_manager/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/modules/boss/module_manager/__init__.py -------------------------------------------------------------------------------- /pyanaconda/modules/common/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/modules/common/Makefile.am -------------------------------------------------------------------------------- /pyanaconda/modules/common/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/modules/common/__init__.py -------------------------------------------------------------------------------- /pyanaconda/modules/common/base/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/modules/common/base/Makefile.am -------------------------------------------------------------------------------- /pyanaconda/modules/common/base/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/modules/common/base/__init__.py -------------------------------------------------------------------------------- /pyanaconda/modules/common/base/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/modules/common/base/base.py -------------------------------------------------------------------------------- /pyanaconda/modules/common/base/base_interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/modules/common/base/base_interface.py -------------------------------------------------------------------------------- /pyanaconda/modules/common/base/base_template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/modules/common/base/base_template.py -------------------------------------------------------------------------------- /pyanaconda/modules/common/constants/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/modules/common/constants/Makefile.am -------------------------------------------------------------------------------- /pyanaconda/modules/common/constants/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyanaconda/modules/common/constants/interfaces.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/modules/common/constants/interfaces.py -------------------------------------------------------------------------------- /pyanaconda/modules/common/constants/namespaces.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/modules/common/constants/namespaces.py -------------------------------------------------------------------------------- /pyanaconda/modules/common/constants/objects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/modules/common/constants/objects.py -------------------------------------------------------------------------------- /pyanaconda/modules/common/constants/services.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/modules/common/constants/services.py -------------------------------------------------------------------------------- /pyanaconda/modules/common/containers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/modules/common/containers.py -------------------------------------------------------------------------------- /pyanaconda/modules/common/custom_typing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/modules/common/custom_typing.py -------------------------------------------------------------------------------- /pyanaconda/modules/common/errors/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/modules/common/errors/Makefile.am -------------------------------------------------------------------------------- /pyanaconda/modules/common/errors/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/modules/common/errors/__init__.py -------------------------------------------------------------------------------- /pyanaconda/modules/common/errors/configuration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/modules/common/errors/configuration.py -------------------------------------------------------------------------------- /pyanaconda/modules/common/errors/general.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/modules/common/errors/general.py -------------------------------------------------------------------------------- /pyanaconda/modules/common/errors/installation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/modules/common/errors/installation.py -------------------------------------------------------------------------------- /pyanaconda/modules/common/errors/module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/modules/common/errors/module.py -------------------------------------------------------------------------------- /pyanaconda/modules/common/errors/payload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/modules/common/errors/payload.py -------------------------------------------------------------------------------- /pyanaconda/modules/common/errors/runtime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/modules/common/errors/runtime.py -------------------------------------------------------------------------------- /pyanaconda/modules/common/errors/storage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/modules/common/errors/storage.py -------------------------------------------------------------------------------- /pyanaconda/modules/common/errors/subscription.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/modules/common/errors/subscription.py -------------------------------------------------------------------------------- /pyanaconda/modules/common/errors/task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/modules/common/errors/task.py -------------------------------------------------------------------------------- /pyanaconda/modules/common/structures/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/modules/common/structures/Makefile.am -------------------------------------------------------------------------------- /pyanaconda/modules/common/structures/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyanaconda/modules/common/structures/bootc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/modules/common/structures/bootc.py -------------------------------------------------------------------------------- /pyanaconda/modules/common/structures/comps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/modules/common/structures/comps.py -------------------------------------------------------------------------------- /pyanaconda/modules/common/structures/group.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/modules/common/structures/group.py -------------------------------------------------------------------------------- /pyanaconda/modules/common/structures/iscsi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/modules/common/structures/iscsi.py -------------------------------------------------------------------------------- /pyanaconda/modules/common/structures/kickstart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/modules/common/structures/kickstart.py -------------------------------------------------------------------------------- /pyanaconda/modules/common/structures/language.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/modules/common/structures/language.py -------------------------------------------------------------------------------- /pyanaconda/modules/common/structures/live_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/modules/common/structures/live_image.py -------------------------------------------------------------------------------- /pyanaconda/modules/common/structures/logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/modules/common/structures/logging.py -------------------------------------------------------------------------------- /pyanaconda/modules/common/structures/network.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/modules/common/structures/network.py -------------------------------------------------------------------------------- /pyanaconda/modules/common/structures/packages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/modules/common/structures/packages.py -------------------------------------------------------------------------------- /pyanaconda/modules/common/structures/payload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/modules/common/structures/payload.py -------------------------------------------------------------------------------- /pyanaconda/modules/common/structures/policy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/modules/common/structures/policy.py -------------------------------------------------------------------------------- /pyanaconda/modules/common/structures/product.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/modules/common/structures/product.py -------------------------------------------------------------------------------- /pyanaconda/modules/common/structures/rdp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/modules/common/structures/rdp.py -------------------------------------------------------------------------------- /pyanaconda/modules/common/structures/realm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/modules/common/structures/realm.py -------------------------------------------------------------------------------- /pyanaconda/modules/common/structures/reboot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/modules/common/structures/reboot.py -------------------------------------------------------------------------------- /pyanaconda/modules/common/structures/requirement.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/modules/common/structures/requirement.py -------------------------------------------------------------------------------- /pyanaconda/modules/common/structures/rescue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/modules/common/structures/rescue.py -------------------------------------------------------------------------------- /pyanaconda/modules/common/structures/secret.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/modules/common/structures/secret.py -------------------------------------------------------------------------------- /pyanaconda/modules/common/structures/security.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/modules/common/structures/security.py -------------------------------------------------------------------------------- /pyanaconda/modules/common/structures/sshkey.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/modules/common/structures/sshkey.py -------------------------------------------------------------------------------- /pyanaconda/modules/common/structures/storage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/modules/common/structures/storage.py -------------------------------------------------------------------------------- /pyanaconda/modules/common/structures/timezone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/modules/common/structures/timezone.py -------------------------------------------------------------------------------- /pyanaconda/modules/common/structures/user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/modules/common/structures/user.py -------------------------------------------------------------------------------- /pyanaconda/modules/common/submodule_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/modules/common/submodule_manager.py -------------------------------------------------------------------------------- /pyanaconda/modules/common/task/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/modules/common/task/Makefile.am -------------------------------------------------------------------------------- /pyanaconda/modules/common/task/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/modules/common/task/__init__.py -------------------------------------------------------------------------------- /pyanaconda/modules/common/task/cancellable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/modules/common/task/cancellable.py -------------------------------------------------------------------------------- /pyanaconda/modules/common/task/progress.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/modules/common/task/progress.py -------------------------------------------------------------------------------- /pyanaconda/modules/common/task/result.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/modules/common/task/result.py -------------------------------------------------------------------------------- /pyanaconda/modules/common/task/runnable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/modules/common/task/runnable.py -------------------------------------------------------------------------------- /pyanaconda/modules/common/task/task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/modules/common/task/task.py -------------------------------------------------------------------------------- /pyanaconda/modules/common/task/task_interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/modules/common/task/task_interface.py -------------------------------------------------------------------------------- /pyanaconda/modules/common/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/modules/common/util.py -------------------------------------------------------------------------------- /pyanaconda/modules/localization/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/modules/localization/Makefile.am -------------------------------------------------------------------------------- /pyanaconda/modules/localization/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyanaconda/modules/localization/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/modules/localization/__main__.py -------------------------------------------------------------------------------- /pyanaconda/modules/localization/installation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/modules/localization/installation.py -------------------------------------------------------------------------------- /pyanaconda/modules/localization/kickstart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/modules/localization/kickstart.py -------------------------------------------------------------------------------- /pyanaconda/modules/localization/live_keyboard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/modules/localization/live_keyboard.py -------------------------------------------------------------------------------- /pyanaconda/modules/localization/localed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/modules/localization/localed.py -------------------------------------------------------------------------------- /pyanaconda/modules/localization/localization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/modules/localization/localization.py -------------------------------------------------------------------------------- /pyanaconda/modules/localization/runtime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/modules/localization/runtime.py -------------------------------------------------------------------------------- /pyanaconda/modules/localization/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/modules/localization/utils.py -------------------------------------------------------------------------------- /pyanaconda/modules/network/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/modules/network/Makefile.am -------------------------------------------------------------------------------- /pyanaconda/modules/network/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyanaconda/modules/network/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/modules/network/__main__.py -------------------------------------------------------------------------------- /pyanaconda/modules/network/config_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/modules/network/config_file.py -------------------------------------------------------------------------------- /pyanaconda/modules/network/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/modules/network/constants.py -------------------------------------------------------------------------------- /pyanaconda/modules/network/firewall/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/modules/network/firewall/Makefile.am -------------------------------------------------------------------------------- /pyanaconda/modules/network/firewall/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/modules/network/firewall/__init__.py -------------------------------------------------------------------------------- /pyanaconda/modules/network/firewall/firewall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/modules/network/firewall/firewall.py -------------------------------------------------------------------------------- /pyanaconda/modules/network/initialization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/modules/network/initialization.py -------------------------------------------------------------------------------- /pyanaconda/modules/network/installation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/modules/network/installation.py -------------------------------------------------------------------------------- /pyanaconda/modules/network/kickstart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/modules/network/kickstart.py -------------------------------------------------------------------------------- /pyanaconda/modules/network/network.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/modules/network/network.py -------------------------------------------------------------------------------- /pyanaconda/modules/network/network_interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/modules/network/network_interface.py -------------------------------------------------------------------------------- /pyanaconda/modules/network/nm_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/modules/network/nm_client.py -------------------------------------------------------------------------------- /pyanaconda/modules/network/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/modules/network/utils.py -------------------------------------------------------------------------------- /pyanaconda/modules/payloads/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/modules/payloads/Makefile.am -------------------------------------------------------------------------------- /pyanaconda/modules/payloads/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyanaconda/modules/payloads/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/modules/payloads/__main__.py -------------------------------------------------------------------------------- /pyanaconda/modules/payloads/base/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/modules/payloads/base/Makefile.am -------------------------------------------------------------------------------- /pyanaconda/modules/payloads/base/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/modules/payloads/base/__init__.py -------------------------------------------------------------------------------- /pyanaconda/modules/payloads/base/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/modules/payloads/base/utils.py -------------------------------------------------------------------------------- /pyanaconda/modules/payloads/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/modules/payloads/constants.py -------------------------------------------------------------------------------- /pyanaconda/modules/payloads/installation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/modules/payloads/installation.py -------------------------------------------------------------------------------- /pyanaconda/modules/payloads/kickstart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/modules/payloads/kickstart.py -------------------------------------------------------------------------------- /pyanaconda/modules/payloads/payload/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/modules/payloads/payload/Makefile.am -------------------------------------------------------------------------------- /pyanaconda/modules/payloads/payload/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyanaconda/modules/payloads/payload/dnf/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyanaconda/modules/payloads/payload/dnf/dnf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/modules/payloads/payload/dnf/dnf.py -------------------------------------------------------------------------------- /pyanaconda/modules/payloads/payload/dnf/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/modules/payloads/payload/dnf/utils.py -------------------------------------------------------------------------------- /pyanaconda/modules/payloads/payload/factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/modules/payloads/payload/factory.py -------------------------------------------------------------------------------- /pyanaconda/modules/payloads/payload/flatpak/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyanaconda/modules/payloads/payload/live_image/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyanaconda/modules/payloads/payload/live_os/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyanaconda/modules/payloads/payload/rpm_ostree/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyanaconda/modules/payloads/payloads.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/modules/payloads/payloads.py -------------------------------------------------------------------------------- /pyanaconda/modules/payloads/source/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/modules/payloads/source/Makefile.am -------------------------------------------------------------------------------- /pyanaconda/modules/payloads/source/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyanaconda/modules/payloads/source/bootc/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyanaconda/modules/payloads/source/cdn/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyanaconda/modules/payloads/source/cdn/cdn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/modules/payloads/source/cdn/cdn.py -------------------------------------------------------------------------------- /pyanaconda/modules/payloads/source/cdrom/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyanaconda/modules/payloads/source/closest_mirror/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyanaconda/modules/payloads/source/factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/modules/payloads/source/factory.py -------------------------------------------------------------------------------- /pyanaconda/modules/payloads/source/flatpak/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyanaconda/modules/payloads/source/harddrive/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyanaconda/modules/payloads/source/hmc/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyanaconda/modules/payloads/source/hmc/hmc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/modules/payloads/source/hmc/hmc.py -------------------------------------------------------------------------------- /pyanaconda/modules/payloads/source/live_image/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyanaconda/modules/payloads/source/live_os/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyanaconda/modules/payloads/source/live_tar/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyanaconda/modules/payloads/source/nfs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyanaconda/modules/payloads/source/nfs/nfs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/modules/payloads/source/nfs/nfs.py -------------------------------------------------------------------------------- /pyanaconda/modules/payloads/source/repo_files/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyanaconda/modules/payloads/source/repo_path/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyanaconda/modules/payloads/source/rpm_ostree/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyanaconda/modules/payloads/source/rpm_ostree_container/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyanaconda/modules/payloads/source/url/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyanaconda/modules/payloads/source/url/url.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/modules/payloads/source/url/url.py -------------------------------------------------------------------------------- /pyanaconda/modules/payloads/source/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/modules/payloads/source/utils.py -------------------------------------------------------------------------------- /pyanaconda/modules/runtime/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/modules/runtime/Makefile.am -------------------------------------------------------------------------------- /pyanaconda/modules/runtime/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyanaconda/modules/runtime/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/modules/runtime/__main__.py -------------------------------------------------------------------------------- /pyanaconda/modules/runtime/kickstart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/modules/runtime/kickstart.py -------------------------------------------------------------------------------- /pyanaconda/modules/runtime/runtime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/modules/runtime/runtime.py -------------------------------------------------------------------------------- /pyanaconda/modules/runtime/runtime_interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/modules/runtime/runtime_interface.py -------------------------------------------------------------------------------- /pyanaconda/modules/runtime/scripts/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/modules/runtime/scripts/Makefile.am -------------------------------------------------------------------------------- /pyanaconda/modules/runtime/scripts/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/modules/runtime/scripts/__init__.py -------------------------------------------------------------------------------- /pyanaconda/modules/runtime/scripts/runtime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/modules/runtime/scripts/runtime.py -------------------------------------------------------------------------------- /pyanaconda/modules/runtime/scripts/scripts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/modules/runtime/scripts/scripts.py -------------------------------------------------------------------------------- /pyanaconda/modules/runtime/user_interface/ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/modules/runtime/user_interface/ui.py -------------------------------------------------------------------------------- /pyanaconda/modules/security/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/modules/security/Makefile.am -------------------------------------------------------------------------------- /pyanaconda/modules/security/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyanaconda/modules/security/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/modules/security/__main__.py -------------------------------------------------------------------------------- /pyanaconda/modules/security/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/modules/security/constants.py -------------------------------------------------------------------------------- /pyanaconda/modules/security/installation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/modules/security/installation.py -------------------------------------------------------------------------------- /pyanaconda/modules/security/kickstart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/modules/security/kickstart.py -------------------------------------------------------------------------------- /pyanaconda/modules/security/security.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/modules/security/security.py -------------------------------------------------------------------------------- /pyanaconda/modules/services/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/modules/services/Makefile.am -------------------------------------------------------------------------------- /pyanaconda/modules/services/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyanaconda/modules/services/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/modules/services/__main__.py -------------------------------------------------------------------------------- /pyanaconda/modules/services/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/modules/services/constants.py -------------------------------------------------------------------------------- /pyanaconda/modules/services/installation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/modules/services/installation.py -------------------------------------------------------------------------------- /pyanaconda/modules/services/kickstart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/modules/services/kickstart.py -------------------------------------------------------------------------------- /pyanaconda/modules/services/services.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/modules/services/services.py -------------------------------------------------------------------------------- /pyanaconda/modules/storage/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/modules/storage/Makefile.am -------------------------------------------------------------------------------- /pyanaconda/modules/storage/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyanaconda/modules/storage/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/modules/storage/__main__.py -------------------------------------------------------------------------------- /pyanaconda/modules/storage/bootloader/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/modules/storage/bootloader/base.py -------------------------------------------------------------------------------- /pyanaconda/modules/storage/bootloader/efi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/modules/storage/bootloader/efi.py -------------------------------------------------------------------------------- /pyanaconda/modules/storage/bootloader/factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/modules/storage/bootloader/factory.py -------------------------------------------------------------------------------- /pyanaconda/modules/storage/bootloader/grub2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/modules/storage/bootloader/grub2.py -------------------------------------------------------------------------------- /pyanaconda/modules/storage/bootloader/image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/modules/storage/bootloader/image.py -------------------------------------------------------------------------------- /pyanaconda/modules/storage/bootloader/systemd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/modules/storage/bootloader/systemd.py -------------------------------------------------------------------------------- /pyanaconda/modules/storage/bootloader/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/modules/storage/bootloader/utils.py -------------------------------------------------------------------------------- /pyanaconda/modules/storage/bootloader/zipl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/modules/storage/bootloader/zipl.py -------------------------------------------------------------------------------- /pyanaconda/modules/storage/checker/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/modules/storage/checker/Makefile.am -------------------------------------------------------------------------------- /pyanaconda/modules/storage/checker/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/modules/storage/checker/__init__.py -------------------------------------------------------------------------------- /pyanaconda/modules/storage/checker/checker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/modules/storage/checker/checker.py -------------------------------------------------------------------------------- /pyanaconda/modules/storage/checker/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/modules/storage/checker/utils.py -------------------------------------------------------------------------------- /pyanaconda/modules/storage/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/modules/storage/constants.py -------------------------------------------------------------------------------- /pyanaconda/modules/storage/dasd/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/modules/storage/dasd/Makefile.am -------------------------------------------------------------------------------- /pyanaconda/modules/storage/dasd/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/modules/storage/dasd/__init__.py -------------------------------------------------------------------------------- /pyanaconda/modules/storage/dasd/dasd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/modules/storage/dasd/dasd.py -------------------------------------------------------------------------------- /pyanaconda/modules/storage/dasd/discover.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/modules/storage/dasd/discover.py -------------------------------------------------------------------------------- /pyanaconda/modules/storage/dasd/format.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/modules/storage/dasd/format.py -------------------------------------------------------------------------------- /pyanaconda/modules/storage/devicetree/fsset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/modules/storage/devicetree/fsset.py -------------------------------------------------------------------------------- /pyanaconda/modules/storage/devicetree/handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/modules/storage/devicetree/handler.py -------------------------------------------------------------------------------- /pyanaconda/modules/storage/devicetree/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/modules/storage/devicetree/model.py -------------------------------------------------------------------------------- /pyanaconda/modules/storage/devicetree/rescue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/modules/storage/devicetree/rescue.py -------------------------------------------------------------------------------- /pyanaconda/modules/storage/devicetree/root.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/modules/storage/devicetree/root.py -------------------------------------------------------------------------------- /pyanaconda/modules/storage/devicetree/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/modules/storage/devicetree/utils.py -------------------------------------------------------------------------------- /pyanaconda/modules/storage/devicetree/viewer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/modules/storage/devicetree/viewer.py -------------------------------------------------------------------------------- /pyanaconda/modules/storage/fcoe/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/modules/storage/fcoe/Makefile.am -------------------------------------------------------------------------------- /pyanaconda/modules/storage/fcoe/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/modules/storage/fcoe/__init__.py -------------------------------------------------------------------------------- /pyanaconda/modules/storage/fcoe/discover.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/modules/storage/fcoe/discover.py -------------------------------------------------------------------------------- /pyanaconda/modules/storage/fcoe/fcoe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/modules/storage/fcoe/fcoe.py -------------------------------------------------------------------------------- /pyanaconda/modules/storage/initialization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/modules/storage/initialization.py -------------------------------------------------------------------------------- /pyanaconda/modules/storage/installation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/modules/storage/installation.py -------------------------------------------------------------------------------- /pyanaconda/modules/storage/iscsi/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/modules/storage/iscsi/Makefile.am -------------------------------------------------------------------------------- /pyanaconda/modules/storage/iscsi/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/modules/storage/iscsi/__init__.py -------------------------------------------------------------------------------- /pyanaconda/modules/storage/iscsi/discover.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/modules/storage/iscsi/discover.py -------------------------------------------------------------------------------- /pyanaconda/modules/storage/iscsi/iscsi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/modules/storage/iscsi/iscsi.py -------------------------------------------------------------------------------- /pyanaconda/modules/storage/kickstart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/modules/storage/kickstart.py -------------------------------------------------------------------------------- /pyanaconda/modules/storage/nvme/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/modules/storage/nvme/Makefile.am -------------------------------------------------------------------------------- /pyanaconda/modules/storage/nvme/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/modules/storage/nvme/__init__.py -------------------------------------------------------------------------------- /pyanaconda/modules/storage/nvme/nvme.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/modules/storage/nvme/nvme.py -------------------------------------------------------------------------------- /pyanaconda/modules/storage/partitioning/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyanaconda/modules/storage/partitioning/automatic/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyanaconda/modules/storage/partitioning/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/modules/storage/partitioning/base.py -------------------------------------------------------------------------------- /pyanaconda/modules/storage/partitioning/blivet/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyanaconda/modules/storage/partitioning/custom/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyanaconda/modules/storage/partitioning/interactive/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyanaconda/modules/storage/partitioning/manual/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyanaconda/modules/storage/platform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/modules/storage/platform.py -------------------------------------------------------------------------------- /pyanaconda/modules/storage/reset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/modules/storage/reset.py -------------------------------------------------------------------------------- /pyanaconda/modules/storage/snapshot/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/modules/storage/snapshot/Makefile.am -------------------------------------------------------------------------------- /pyanaconda/modules/storage/snapshot/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/modules/storage/snapshot/__init__.py -------------------------------------------------------------------------------- /pyanaconda/modules/storage/snapshot/create.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/modules/storage/snapshot/create.py -------------------------------------------------------------------------------- /pyanaconda/modules/storage/snapshot/device.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/modules/storage/snapshot/device.py -------------------------------------------------------------------------------- /pyanaconda/modules/storage/snapshot/snapshot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/modules/storage/snapshot/snapshot.py -------------------------------------------------------------------------------- /pyanaconda/modules/storage/storage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/modules/storage/storage.py -------------------------------------------------------------------------------- /pyanaconda/modules/storage/storage_interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/modules/storage/storage_interface.py -------------------------------------------------------------------------------- /pyanaconda/modules/storage/storage_subscriber.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/modules/storage/storage_subscriber.py -------------------------------------------------------------------------------- /pyanaconda/modules/storage/teardown.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/modules/storage/teardown.py -------------------------------------------------------------------------------- /pyanaconda/modules/storage/zfcp/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/modules/storage/zfcp/Makefile.am -------------------------------------------------------------------------------- /pyanaconda/modules/storage/zfcp/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/modules/storage/zfcp/__init__.py -------------------------------------------------------------------------------- /pyanaconda/modules/storage/zfcp/discover.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/modules/storage/zfcp/discover.py -------------------------------------------------------------------------------- /pyanaconda/modules/storage/zfcp/zfcp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/modules/storage/zfcp/zfcp.py -------------------------------------------------------------------------------- /pyanaconda/modules/subscription/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/modules/subscription/Makefile.am -------------------------------------------------------------------------------- /pyanaconda/modules/subscription/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyanaconda/modules/subscription/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/modules/subscription/__main__.py -------------------------------------------------------------------------------- /pyanaconda/modules/subscription/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/modules/subscription/constants.py -------------------------------------------------------------------------------- /pyanaconda/modules/subscription/installation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/modules/subscription/installation.py -------------------------------------------------------------------------------- /pyanaconda/modules/subscription/kickstart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/modules/subscription/kickstart.py -------------------------------------------------------------------------------- /pyanaconda/modules/subscription/rhsm_observer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/modules/subscription/rhsm_observer.py -------------------------------------------------------------------------------- /pyanaconda/modules/subscription/runtime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/modules/subscription/runtime.py -------------------------------------------------------------------------------- /pyanaconda/modules/subscription/satellite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/modules/subscription/satellite.py -------------------------------------------------------------------------------- /pyanaconda/modules/subscription/subscription.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/modules/subscription/subscription.py -------------------------------------------------------------------------------- /pyanaconda/modules/subscription/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/modules/subscription/utils.py -------------------------------------------------------------------------------- /pyanaconda/modules/timezone/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/modules/timezone/Makefile.am -------------------------------------------------------------------------------- /pyanaconda/modules/timezone/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyanaconda/modules/timezone/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/modules/timezone/__main__.py -------------------------------------------------------------------------------- /pyanaconda/modules/timezone/initialization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/modules/timezone/initialization.py -------------------------------------------------------------------------------- /pyanaconda/modules/timezone/installation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/modules/timezone/installation.py -------------------------------------------------------------------------------- /pyanaconda/modules/timezone/kickstart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/modules/timezone/kickstart.py -------------------------------------------------------------------------------- /pyanaconda/modules/timezone/timezone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/modules/timezone/timezone.py -------------------------------------------------------------------------------- /pyanaconda/modules/users/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/modules/users/Makefile.am -------------------------------------------------------------------------------- /pyanaconda/modules/users/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyanaconda/modules/users/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/modules/users/__main__.py -------------------------------------------------------------------------------- /pyanaconda/modules/users/installation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/modules/users/installation.py -------------------------------------------------------------------------------- /pyanaconda/modules/users/kickstart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/modules/users/kickstart.py -------------------------------------------------------------------------------- /pyanaconda/modules/users/users.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/modules/users/users.py -------------------------------------------------------------------------------- /pyanaconda/modules/users/users_interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/modules/users/users_interface.py -------------------------------------------------------------------------------- /pyanaconda/mutter_display.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/mutter_display.py -------------------------------------------------------------------------------- /pyanaconda/network.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/network.py -------------------------------------------------------------------------------- /pyanaconda/ntp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/ntp.py -------------------------------------------------------------------------------- /pyanaconda/payload/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/payload/Makefile.am -------------------------------------------------------------------------------- /pyanaconda/payload/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyanaconda/payload/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/payload/base.py -------------------------------------------------------------------------------- /pyanaconda/payload/dnf/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/payload/dnf/Makefile.am -------------------------------------------------------------------------------- /pyanaconda/payload/dnf/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/payload/dnf/__init__.py -------------------------------------------------------------------------------- /pyanaconda/payload/dnf/payload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/payload/dnf/payload.py -------------------------------------------------------------------------------- /pyanaconda/payload/image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/payload/image.py -------------------------------------------------------------------------------- /pyanaconda/payload/live/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/payload/live/Makefile.am -------------------------------------------------------------------------------- /pyanaconda/payload/live/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/payload/live/__init__.py -------------------------------------------------------------------------------- /pyanaconda/payload/live/payload_liveimg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/payload/live/payload_liveimg.py -------------------------------------------------------------------------------- /pyanaconda/payload/live/payload_liveos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/payload/live/payload_liveos.py -------------------------------------------------------------------------------- /pyanaconda/payload/manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/payload/manager.py -------------------------------------------------------------------------------- /pyanaconda/payload/migrated.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/payload/migrated.py -------------------------------------------------------------------------------- /pyanaconda/payload/rpmostreepayload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/payload/rpmostreepayload.py -------------------------------------------------------------------------------- /pyanaconda/payload/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/payload/utils.py -------------------------------------------------------------------------------- /pyanaconda/queuefactory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/queuefactory.py -------------------------------------------------------------------------------- /pyanaconda/rescue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/rescue.py -------------------------------------------------------------------------------- /pyanaconda/screensaver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/screensaver.py -------------------------------------------------------------------------------- /pyanaconda/startup_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/startup_utils.py -------------------------------------------------------------------------------- /pyanaconda/timezone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/timezone.py -------------------------------------------------------------------------------- /pyanaconda/ui/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/ui/Makefile.am -------------------------------------------------------------------------------- /pyanaconda/ui/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/ui/__init__.py -------------------------------------------------------------------------------- /pyanaconda/ui/categories/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/ui/categories/Makefile.am -------------------------------------------------------------------------------- /pyanaconda/ui/categories/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/ui/categories/__init__.py -------------------------------------------------------------------------------- /pyanaconda/ui/categories/customization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/ui/categories/customization.py -------------------------------------------------------------------------------- /pyanaconda/ui/categories/localization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/ui/categories/localization.py -------------------------------------------------------------------------------- /pyanaconda/ui/categories/software.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/ui/categories/software.py -------------------------------------------------------------------------------- /pyanaconda/ui/categories/system.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/ui/categories/system.py -------------------------------------------------------------------------------- /pyanaconda/ui/categories/user_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/ui/categories/user_settings.py -------------------------------------------------------------------------------- /pyanaconda/ui/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/ui/common.py -------------------------------------------------------------------------------- /pyanaconda/ui/communication.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/ui/communication.py -------------------------------------------------------------------------------- /pyanaconda/ui/context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/ui/context.py -------------------------------------------------------------------------------- /pyanaconda/ui/gui/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/ui/gui/Makefile.am -------------------------------------------------------------------------------- /pyanaconda/ui/gui/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/ui/gui/TODO -------------------------------------------------------------------------------- /pyanaconda/ui/gui/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/ui/gui/__init__.py -------------------------------------------------------------------------------- /pyanaconda/ui/gui/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/ui/gui/helpers.py -------------------------------------------------------------------------------- /pyanaconda/ui/gui/hubs/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/ui/gui/hubs/Makefile.am -------------------------------------------------------------------------------- /pyanaconda/ui/gui/hubs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/ui/gui/hubs/__init__.py -------------------------------------------------------------------------------- /pyanaconda/ui/gui/hubs/summary.glade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/ui/gui/hubs/summary.glade -------------------------------------------------------------------------------- /pyanaconda/ui/gui/hubs/summary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/ui/gui/hubs/summary.py -------------------------------------------------------------------------------- /pyanaconda/ui/gui/main.glade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/ui/gui/main.glade -------------------------------------------------------------------------------- /pyanaconda/ui/gui/spokes/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/ui/gui/spokes/Makefile.am -------------------------------------------------------------------------------- /pyanaconda/ui/gui/spokes/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/ui/gui/spokes/__init__.py -------------------------------------------------------------------------------- /pyanaconda/ui/gui/spokes/advanced_storage.glade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/ui/gui/spokes/advanced_storage.glade -------------------------------------------------------------------------------- /pyanaconda/ui/gui/spokes/advanced_storage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/ui/gui/spokes/advanced_storage.py -------------------------------------------------------------------------------- /pyanaconda/ui/gui/spokes/advanced_user.glade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/ui/gui/spokes/advanced_user.glade -------------------------------------------------------------------------------- /pyanaconda/ui/gui/spokes/advstorage/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/ui/gui/spokes/advstorage/Makefile.am -------------------------------------------------------------------------------- /pyanaconda/ui/gui/spokes/advstorage/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyanaconda/ui/gui/spokes/advstorage/dasd.glade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/ui/gui/spokes/advstorage/dasd.glade -------------------------------------------------------------------------------- /pyanaconda/ui/gui/spokes/advstorage/dasd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/ui/gui/spokes/advstorage/dasd.py -------------------------------------------------------------------------------- /pyanaconda/ui/gui/spokes/advstorage/fcoe.glade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/ui/gui/spokes/advstorage/fcoe.glade -------------------------------------------------------------------------------- /pyanaconda/ui/gui/spokes/advstorage/fcoe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/ui/gui/spokes/advstorage/fcoe.py -------------------------------------------------------------------------------- /pyanaconda/ui/gui/spokes/advstorage/iscsi.glade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/ui/gui/spokes/advstorage/iscsi.glade -------------------------------------------------------------------------------- /pyanaconda/ui/gui/spokes/advstorage/iscsi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/ui/gui/spokes/advstorage/iscsi.py -------------------------------------------------------------------------------- /pyanaconda/ui/gui/spokes/advstorage/zfcp.glade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/ui/gui/spokes/advstorage/zfcp.glade -------------------------------------------------------------------------------- /pyanaconda/ui/gui/spokes/advstorage/zfcp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/ui/gui/spokes/advstorage/zfcp.py -------------------------------------------------------------------------------- /pyanaconda/ui/gui/spokes/blivet_gui.glade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/ui/gui/spokes/blivet_gui.glade -------------------------------------------------------------------------------- /pyanaconda/ui/gui/spokes/blivet_gui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/ui/gui/spokes/blivet_gui.py -------------------------------------------------------------------------------- /pyanaconda/ui/gui/spokes/custom_storage.glade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/ui/gui/spokes/custom_storage.glade -------------------------------------------------------------------------------- /pyanaconda/ui/gui/spokes/custom_storage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/ui/gui/spokes/custom_storage.py -------------------------------------------------------------------------------- /pyanaconda/ui/gui/spokes/datetime_spoke.glade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/ui/gui/spokes/datetime_spoke.glade -------------------------------------------------------------------------------- /pyanaconda/ui/gui/spokes/datetime_spoke.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/ui/gui/spokes/datetime_spoke.py -------------------------------------------------------------------------------- /pyanaconda/ui/gui/spokes/installation_source.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/ui/gui/spokes/installation_source.py -------------------------------------------------------------------------------- /pyanaconda/ui/gui/spokes/keyboard.glade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/ui/gui/spokes/keyboard.glade -------------------------------------------------------------------------------- /pyanaconda/ui/gui/spokes/keyboard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/ui/gui/spokes/keyboard.py -------------------------------------------------------------------------------- /pyanaconda/ui/gui/spokes/language_support.glade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/ui/gui/spokes/language_support.glade -------------------------------------------------------------------------------- /pyanaconda/ui/gui/spokes/language_support.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/ui/gui/spokes/language_support.py -------------------------------------------------------------------------------- /pyanaconda/ui/gui/spokes/lib/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/ui/gui/spokes/lib/Makefile.am -------------------------------------------------------------------------------- /pyanaconda/ui/gui/spokes/lib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyanaconda/ui/gui/spokes/lib/accordion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/ui/gui/spokes/lib/accordion.py -------------------------------------------------------------------------------- /pyanaconda/ui/gui/spokes/lib/cart.glade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/ui/gui/spokes/lib/cart.glade -------------------------------------------------------------------------------- /pyanaconda/ui/gui/spokes/lib/cart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/ui/gui/spokes/lib/cart.py -------------------------------------------------------------------------------- /pyanaconda/ui/gui/spokes/lib/dasdfmt.glade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/ui/gui/spokes/lib/dasdfmt.glade -------------------------------------------------------------------------------- /pyanaconda/ui/gui/spokes/lib/dasdfmt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/ui/gui/spokes/lib/dasdfmt.py -------------------------------------------------------------------------------- /pyanaconda/ui/gui/spokes/lib/detailederror.glade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/ui/gui/spokes/lib/detailederror.glade -------------------------------------------------------------------------------- /pyanaconda/ui/gui/spokes/lib/detailederror.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/ui/gui/spokes/lib/detailederror.py -------------------------------------------------------------------------------- /pyanaconda/ui/gui/spokes/lib/ntp_dialog.glade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/ui/gui/spokes/lib/ntp_dialog.glade -------------------------------------------------------------------------------- /pyanaconda/ui/gui/spokes/lib/ntp_dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/ui/gui/spokes/lib/ntp_dialog.py -------------------------------------------------------------------------------- /pyanaconda/ui/gui/spokes/lib/passphrase.glade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/ui/gui/spokes/lib/passphrase.glade -------------------------------------------------------------------------------- /pyanaconda/ui/gui/spokes/lib/passphrase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/ui/gui/spokes/lib/passphrase.py -------------------------------------------------------------------------------- /pyanaconda/ui/gui/spokes/lib/refresh.glade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/ui/gui/spokes/lib/refresh.glade -------------------------------------------------------------------------------- /pyanaconda/ui/gui/spokes/lib/refresh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/ui/gui/spokes/lib/refresh.py -------------------------------------------------------------------------------- /pyanaconda/ui/gui/spokes/lib/resize.glade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/ui/gui/spokes/lib/resize.glade -------------------------------------------------------------------------------- /pyanaconda/ui/gui/spokes/lib/resize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/ui/gui/spokes/lib/resize.py -------------------------------------------------------------------------------- /pyanaconda/ui/gui/spokes/lib/storage_dialogs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/ui/gui/spokes/lib/storage_dialogs.py -------------------------------------------------------------------------------- /pyanaconda/ui/gui/spokes/lib/subscription.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/ui/gui/spokes/lib/subscription.py -------------------------------------------------------------------------------- /pyanaconda/ui/gui/spokes/lib/summary.glade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/ui/gui/spokes/lib/summary.glade -------------------------------------------------------------------------------- /pyanaconda/ui/gui/spokes/lib/summary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/ui/gui/spokes/lib/summary.py -------------------------------------------------------------------------------- /pyanaconda/ui/gui/spokes/network.glade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/ui/gui/spokes/network.glade -------------------------------------------------------------------------------- /pyanaconda/ui/gui/spokes/network.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/ui/gui/spokes/network.py -------------------------------------------------------------------------------- /pyanaconda/ui/gui/spokes/root_password.glade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/ui/gui/spokes/root_password.glade -------------------------------------------------------------------------------- /pyanaconda/ui/gui/spokes/root_password.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/ui/gui/spokes/root_password.py -------------------------------------------------------------------------------- /pyanaconda/ui/gui/spokes/software_selection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/ui/gui/spokes/software_selection.py -------------------------------------------------------------------------------- /pyanaconda/ui/gui/spokes/storage.glade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/ui/gui/spokes/storage.glade -------------------------------------------------------------------------------- /pyanaconda/ui/gui/spokes/storage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/ui/gui/spokes/storage.py -------------------------------------------------------------------------------- /pyanaconda/ui/gui/spokes/subscription.glade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/ui/gui/spokes/subscription.glade -------------------------------------------------------------------------------- /pyanaconda/ui/gui/spokes/subscription.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/ui/gui/spokes/subscription.py -------------------------------------------------------------------------------- /pyanaconda/ui/gui/spokes/user.glade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/ui/gui/spokes/user.glade -------------------------------------------------------------------------------- /pyanaconda/ui/gui/spokes/user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/ui/gui/spokes/user.py -------------------------------------------------------------------------------- /pyanaconda/ui/gui/spokes/welcome.glade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/ui/gui/spokes/welcome.glade -------------------------------------------------------------------------------- /pyanaconda/ui/gui/spokes/welcome.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/ui/gui/spokes/welcome.py -------------------------------------------------------------------------------- /pyanaconda/ui/gui/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/ui/gui/utils.py -------------------------------------------------------------------------------- /pyanaconda/ui/gui/xkl_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/ui/gui/xkl_wrapper.py -------------------------------------------------------------------------------- /pyanaconda/ui/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/ui/helpers.py -------------------------------------------------------------------------------- /pyanaconda/ui/lib/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/ui/lib/Makefile.am -------------------------------------------------------------------------------- /pyanaconda/ui/lib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyanaconda/ui/lib/addons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/ui/lib/addons.py -------------------------------------------------------------------------------- /pyanaconda/ui/lib/format_dasd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/ui/lib/format_dasd.py -------------------------------------------------------------------------------- /pyanaconda/ui/lib/payload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/ui/lib/payload.py -------------------------------------------------------------------------------- /pyanaconda/ui/lib/services.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/ui/lib/services.py -------------------------------------------------------------------------------- /pyanaconda/ui/lib/software.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/ui/lib/software.py -------------------------------------------------------------------------------- /pyanaconda/ui/lib/space.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/ui/lib/space.py -------------------------------------------------------------------------------- /pyanaconda/ui/lib/storage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/ui/lib/storage.py -------------------------------------------------------------------------------- /pyanaconda/ui/lib/subscription.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/ui/lib/subscription.py -------------------------------------------------------------------------------- /pyanaconda/ui/lib/users.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/ui/lib/users.py -------------------------------------------------------------------------------- /pyanaconda/ui/tui/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/ui/tui/Makefile.am -------------------------------------------------------------------------------- /pyanaconda/ui/tui/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/ui/tui/__init__.py -------------------------------------------------------------------------------- /pyanaconda/ui/tui/hubs/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/ui/tui/hubs/Makefile.am -------------------------------------------------------------------------------- /pyanaconda/ui/tui/hubs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/ui/tui/hubs/__init__.py -------------------------------------------------------------------------------- /pyanaconda/ui/tui/hubs/summary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/ui/tui/hubs/summary.py -------------------------------------------------------------------------------- /pyanaconda/ui/tui/signals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/ui/tui/signals.py -------------------------------------------------------------------------------- /pyanaconda/ui/tui/spokes/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/ui/tui/spokes/Makefile.am -------------------------------------------------------------------------------- /pyanaconda/ui/tui/spokes/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/ui/tui/spokes/__init__.py -------------------------------------------------------------------------------- /pyanaconda/ui/tui/spokes/askrd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/ui/tui/spokes/askrd.py -------------------------------------------------------------------------------- /pyanaconda/ui/tui/spokes/installation_source.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/ui/tui/spokes/installation_source.py -------------------------------------------------------------------------------- /pyanaconda/ui/tui/spokes/kernel_warning.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/ui/tui/spokes/kernel_warning.py -------------------------------------------------------------------------------- /pyanaconda/ui/tui/spokes/language_support.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/ui/tui/spokes/language_support.py -------------------------------------------------------------------------------- /pyanaconda/ui/tui/spokes/network.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/ui/tui/spokes/network.py -------------------------------------------------------------------------------- /pyanaconda/ui/tui/spokes/root_password.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/ui/tui/spokes/root_password.py -------------------------------------------------------------------------------- /pyanaconda/ui/tui/spokes/shell_spoke.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/ui/tui/spokes/shell_spoke.py -------------------------------------------------------------------------------- /pyanaconda/ui/tui/spokes/software_selection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/ui/tui/spokes/software_selection.py -------------------------------------------------------------------------------- /pyanaconda/ui/tui/spokes/storage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/ui/tui/spokes/storage.py -------------------------------------------------------------------------------- /pyanaconda/ui/tui/spokes/time_spoke.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/ui/tui/spokes/time_spoke.py -------------------------------------------------------------------------------- /pyanaconda/ui/tui/spokes/user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/ui/tui/spokes/user.py -------------------------------------------------------------------------------- /pyanaconda/ui/tui/tuiobject.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/ui/tui/tuiobject.py -------------------------------------------------------------------------------- /pyanaconda/ui/webui/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/ui/webui/Makefile.am -------------------------------------------------------------------------------- /pyanaconda/ui/webui/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/ui/webui/__init__.py -------------------------------------------------------------------------------- /pyanaconda/version.py.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyanaconda/version.py.in -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/pyproject.toml -------------------------------------------------------------------------------- /rpmlint.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/rpmlint.toml -------------------------------------------------------------------------------- /scripts/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/scripts/Makefile.am -------------------------------------------------------------------------------- /scripts/anaconda-cleanup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/scripts/anaconda-cleanup -------------------------------------------------------------------------------- /scripts/anaconda-disable-nm-ibft-plugin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/scripts/anaconda-disable-nm-ibft-plugin -------------------------------------------------------------------------------- /scripts/anaconda-import-initramfs-certs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/scripts/anaconda-import-initramfs-certs -------------------------------------------------------------------------------- /scripts/anaconda-nm-disable-autocons: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/scripts/anaconda-nm-disable-autocons -------------------------------------------------------------------------------- /scripts/anaconda-pre-log-gen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/scripts/anaconda-pre-log-gen -------------------------------------------------------------------------------- /scripts/apply-updates: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/scripts/apply-updates -------------------------------------------------------------------------------- /scripts/define-matrix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/scripts/define-matrix.py -------------------------------------------------------------------------------- /scripts/handle-sshpw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/scripts/handle-sshpw -------------------------------------------------------------------------------- /scripts/instperf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/scripts/instperf -------------------------------------------------------------------------------- /scripts/instperf.p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/scripts/instperf.p -------------------------------------------------------------------------------- /scripts/jinja-render: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/scripts/jinja-render -------------------------------------------------------------------------------- /scripts/log-capture: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/scripts/log-capture -------------------------------------------------------------------------------- /scripts/makebumpver: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/scripts/makebumpver -------------------------------------------------------------------------------- /scripts/makeupdates: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/scripts/makeupdates -------------------------------------------------------------------------------- /scripts/rhel_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/scripts/rhel_version.py -------------------------------------------------------------------------------- /scripts/rhel_version.py.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/scripts/rhel_version.py.j2 -------------------------------------------------------------------------------- /scripts/run-anaconda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/scripts/run-anaconda -------------------------------------------------------------------------------- /scripts/run-in-new-session: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/scripts/run-in-new-session -------------------------------------------------------------------------------- /scripts/start-module: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/scripts/start-module -------------------------------------------------------------------------------- /scripts/testing/check-container-age.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/scripts/testing/check-container-age.sh -------------------------------------------------------------------------------- /scripts/testing/install_dependencies.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/scripts/testing/install_dependencies.sh -------------------------------------------------------------------------------- /scripts/testing/rebuild_iso: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/scripts/testing/rebuild_iso -------------------------------------------------------------------------------- /scripts/testing/update_iso: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/scripts/testing/update_iso -------------------------------------------------------------------------------- /tests/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/tests/Makefile.am -------------------------------------------------------------------------------- /tests/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/tests/README.rst -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/cppcheck/runcppcheck.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/tests/cppcheck/runcppcheck.sh -------------------------------------------------------------------------------- /tests/cppcheck/suppression-list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/tests/cppcheck/suppression-list.txt -------------------------------------------------------------------------------- /tests/gettext_tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/gettext_tests/canary_tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/tests/gettext_tests/canary_tests.sh -------------------------------------------------------------------------------- /tests/gettext_tests/click.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/tests/gettext_tests/click.py -------------------------------------------------------------------------------- /tests/gettext_tests/contexts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/tests/gettext_tests/contexts.py -------------------------------------------------------------------------------- /tests/gettext_tests/style_guide.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/tests/gettext_tests/style_guide.py -------------------------------------------------------------------------------- /tests/glade_tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/tests/glade_tests/__init__.py -------------------------------------------------------------------------------- /tests/glade_tests/glade_tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/tests/glade_tests/glade_tests.sh -------------------------------------------------------------------------------- /tests/glade_tests/test_format_string.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/tests/glade_tests/test_format_string.py -------------------------------------------------------------------------------- /tests/glade_tests/test_glade_validity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/tests/glade_tests/test_glade_validity.py -------------------------------------------------------------------------------- /tests/glade_tests/test_hidden_translatable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/tests/glade_tests/test_hidden_translatable.py -------------------------------------------------------------------------------- /tests/glade_tests/test_icons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/tests/glade_tests/test_icons.py -------------------------------------------------------------------------------- /tests/glade_tests/test_invisible_char.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/tests/glade_tests/test_invisible_char.py -------------------------------------------------------------------------------- /tests/glade_tests/test_markup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/tests/glade_tests/test_markup.py -------------------------------------------------------------------------------- /tests/glade_tests/test_mnemonics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/tests/glade_tests/test_mnemonics.py -------------------------------------------------------------------------------- /tests/glade_tests/test_pw_visibility.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/tests/glade_tests/test_pw_visibility.py -------------------------------------------------------------------------------- /tests/glade_tests/test_viewport.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/tests/glade_tests/test_viewport.py -------------------------------------------------------------------------------- /tests/lib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/lib/filelist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/tests/lib/filelist.py -------------------------------------------------------------------------------- /tests/lib/gladecheck.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/tests/lib/gladecheck.py -------------------------------------------------------------------------------- /tests/lib/iconcheck.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/tests/lib/iconcheck.py -------------------------------------------------------------------------------- /tests/lib/regexcheck.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/tests/lib/regexcheck.py -------------------------------------------------------------------------------- /tests/lib/shutup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/tests/lib/shutup.py -------------------------------------------------------------------------------- /tests/lib/timer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/tests/lib/timer.py -------------------------------------------------------------------------------- /tests/pylint/censorship.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/tests/pylint/censorship.py -------------------------------------------------------------------------------- /tests/pylint/pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/tests/pylint/pylintrc -------------------------------------------------------------------------------- /tests/pylint/runpylint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/tests/pylint/runpylint -------------------------------------------------------------------------------- /tests/pylint/runpylint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/tests/pylint/runpylint.py -------------------------------------------------------------------------------- /tests/rpm_tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/tests/rpm_tests/__init__.py -------------------------------------------------------------------------------- /tests/rpm_tests/rpm_tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/tests/rpm_tests/rpm_tests.sh -------------------------------------------------------------------------------- /tests/rpm_tests/test_create_rpm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/tests/rpm_tests/test_create_rpm.py -------------------------------------------------------------------------------- /tests/ruff/ruff.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/tests/ruff/ruff.toml -------------------------------------------------------------------------------- /tests/ruff/run_ruff.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/tests/ruff/run_ruff.sh -------------------------------------------------------------------------------- /tests/shellcheck/ignores.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/tests/shellcheck/ignores.sh -------------------------------------------------------------------------------- /tests/shellcheck/run_shellcheck.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/tests/shellcheck/run_shellcheck.sh -------------------------------------------------------------------------------- /tests/testenv.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/tests/testenv.sh -------------------------------------------------------------------------------- /tests/unit_tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/tests/unit_tests/__init__.py -------------------------------------------------------------------------------- /tests/unit_tests/dd_tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit_tests/dd_tests/test_dd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/tests/unit_tests/dd_tests/test_dd.py -------------------------------------------------------------------------------- /tests/unit_tests/dracut_tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit_tests/pyanaconda_tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/tests/unit_tests/pyanaconda_tests/__init__.py -------------------------------------------------------------------------------- /tests/unit_tests/pyanaconda_tests/core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit_tests/pyanaconda_tests/modules/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit_tests/pyanaconda_tests/modules/boss/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit_tests/pyanaconda_tests/modules/common/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit_tests/pyanaconda_tests/modules/localization/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit_tests/pyanaconda_tests/modules/network/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit_tests/pyanaconda_tests/modules/payloads/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit_tests/pyanaconda_tests/modules/payloads/payload/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit_tests/pyanaconda_tests/modules/payloads/source/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit_tests/pyanaconda_tests/modules/runtime/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit_tests/pyanaconda_tests/modules/security/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit_tests/pyanaconda_tests/modules/storage/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit_tests/pyanaconda_tests/modules/storage/partitioning/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit_tests/pyanaconda_tests/modules/subscription/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit_tests/pyanaconda_tests/modules/timezone/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit_tests/pyanaconda_tests/modules/users/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit_tests/pyanaconda_tests/test_kexec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/tests/unit_tests/pyanaconda_tests/test_kexec.py -------------------------------------------------------------------------------- /tests/unit_tests/pyanaconda_tests/ui/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit_tests/pyanaconda_tests/ui/test_rdp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/tests/unit_tests/pyanaconda_tests/ui/test_rdp.py -------------------------------------------------------------------------------- /tests/unit_tests/regex_tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit_tests/regex_tests/test_dasd_name.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/tests/unit_tests/regex_tests/test_dasd_name.py -------------------------------------------------------------------------------- /tests/unit_tests/regex_tests/test_groupparse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/tests/unit_tests/regex_tests/test_groupparse.py -------------------------------------------------------------------------------- /tests/unit_tests/regex_tests/test_hostname.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/tests/unit_tests/regex_tests/test_hostname.py -------------------------------------------------------------------------------- /tests/unit_tests/regex_tests/test_iscsi_name.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/tests/unit_tests/regex_tests/test_iscsi_name.py -------------------------------------------------------------------------------- /tests/unit_tests/regex_tests/test_netmask.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/tests/unit_tests/regex_tests/test_netmask.py -------------------------------------------------------------------------------- /tests/unit_tests/regex_tests/test_repo_name.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/tests/unit_tests/regex_tests/test_repo_name.py -------------------------------------------------------------------------------- /tests/unit_tests/regex_tests/test_url.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/tests/unit_tests/regex_tests/test_url.py -------------------------------------------------------------------------------- /tests/unit_tests/regex_tests/test_username.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/tests/unit_tests/regex_tests/test_username.py -------------------------------------------------------------------------------- /tests/unit_tests/regex_tests/test_zfcp_name.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/tests/unit_tests/regex_tests/test_zfcp_name.py -------------------------------------------------------------------------------- /tests/unit_tests/shell_tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit_tests/unit_tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/tests/unit_tests/unit_tests.sh -------------------------------------------------------------------------------- /tests/usercustomize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/tests/usercustomize.py -------------------------------------------------------------------------------- /tests/vulture/run_vulture.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/tests/vulture/run_vulture.sh -------------------------------------------------------------------------------- /translation-canary/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/translation-canary/.gitignore -------------------------------------------------------------------------------- /translation-canary/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/translation-canary/COPYING -------------------------------------------------------------------------------- /translation-canary/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/translation-canary/Makefile -------------------------------------------------------------------------------- /translation-canary/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/translation-canary/README.rst -------------------------------------------------------------------------------- /translation-canary/tests/pylint/runpylint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/translation-canary/tests/pylint/runpylint.py -------------------------------------------------------------------------------- /translation-canary/translation_canary/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /translation-canary/xgettext_werror.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/translation-canary/xgettext_werror.sh -------------------------------------------------------------------------------- /widgets/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/widgets/Makefile.am -------------------------------------------------------------------------------- /widgets/acinclude.m4: -------------------------------------------------------------------------------- 1 | ../acinclude.m4 -------------------------------------------------------------------------------- /widgets/autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/widgets/autogen.sh -------------------------------------------------------------------------------- /widgets/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/widgets/configure.ac -------------------------------------------------------------------------------- /widgets/doc/AnacondaWidgets-docs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/widgets/doc/AnacondaWidgets-docs.xml -------------------------------------------------------------------------------- /widgets/doc/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/widgets/doc/Makefile.am -------------------------------------------------------------------------------- /widgets/doc/run-gtkdoc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/widgets/doc/run-gtkdoc.sh -------------------------------------------------------------------------------- /widgets/glade/AnacondaWidgets.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/widgets/glade/AnacondaWidgets.xml -------------------------------------------------------------------------------- /widgets/glade/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/widgets/glade/Makefile.am -------------------------------------------------------------------------------- /widgets/glade/glade-adaptor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/widgets/glade/glade-adaptor.c -------------------------------------------------------------------------------- /widgets/python/AnacondaWidgets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/widgets/python/AnacondaWidgets.py -------------------------------------------------------------------------------- /widgets/python/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/widgets/python/Makefile.am -------------------------------------------------------------------------------- /widgets/src/BaseStandalone.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/widgets/src/BaseStandalone.c -------------------------------------------------------------------------------- /widgets/src/BaseStandalone.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/widgets/src/BaseStandalone.h -------------------------------------------------------------------------------- /widgets/src/BaseWindow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/widgets/src/BaseWindow.c -------------------------------------------------------------------------------- /widgets/src/BaseWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/widgets/src/BaseWindow.h -------------------------------------------------------------------------------- /widgets/src/DiskOverview.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/widgets/src/DiskOverview.c -------------------------------------------------------------------------------- /widgets/src/DiskOverview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/widgets/src/DiskOverview.h -------------------------------------------------------------------------------- /widgets/src/HubWindow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/widgets/src/HubWindow.c -------------------------------------------------------------------------------- /widgets/src/HubWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/widgets/src/HubWindow.h -------------------------------------------------------------------------------- /widgets/src/LayoutIndicator.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/widgets/src/LayoutIndicator.c -------------------------------------------------------------------------------- /widgets/src/LayoutIndicator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/widgets/src/LayoutIndicator.h -------------------------------------------------------------------------------- /widgets/src/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/widgets/src/Makefile.am -------------------------------------------------------------------------------- /widgets/src/MountpointSelector.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/widgets/src/MountpointSelector.c -------------------------------------------------------------------------------- /widgets/src/MountpointSelector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/widgets/src/MountpointSelector.h -------------------------------------------------------------------------------- /widgets/src/SpokeSelector.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/widgets/src/SpokeSelector.c -------------------------------------------------------------------------------- /widgets/src/SpokeSelector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/widgets/src/SpokeSelector.h -------------------------------------------------------------------------------- /widgets/src/SpokeWindow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/widgets/src/SpokeWindow.c -------------------------------------------------------------------------------- /widgets/src/SpokeWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/widgets/src/SpokeWindow.h -------------------------------------------------------------------------------- /widgets/src/StandaloneWindow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/widgets/src/StandaloneWindow.c -------------------------------------------------------------------------------- /widgets/src/StandaloneWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/widgets/src/StandaloneWindow.h -------------------------------------------------------------------------------- /widgets/src/intl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/widgets/src/intl.h -------------------------------------------------------------------------------- /widgets/src/resources/BaseWindow-beta-label.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/widgets/src/resources/BaseWindow-beta-label.css -------------------------------------------------------------------------------- /widgets/src/resources/BaseWindow-distro-label.css: -------------------------------------------------------------------------------- 1 | #anaconda-distro-label { 2 | font-size: large; 3 | } 4 | -------------------------------------------------------------------------------- /widgets/src/resources/BaseWindow-name-label.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/widgets/src/resources/BaseWindow-name-label.css -------------------------------------------------------------------------------- /widgets/src/resources/DiskOverview-capacity.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/widgets/src/resources/DiskOverview-capacity.css -------------------------------------------------------------------------------- /widgets/src/resources/DiskOverview-free.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/widgets/src/resources/DiskOverview-free.css -------------------------------------------------------------------------------- /widgets/src/resources/DiskOverview-name.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/widgets/src/resources/DiskOverview-name.css -------------------------------------------------------------------------------- /widgets/src/resources/LayoutIndicator-label.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/widgets/src/resources/LayoutIndicator-label.css -------------------------------------------------------------------------------- /widgets/src/resources/LayoutIndicator.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/widgets/src/resources/LayoutIndicator.css -------------------------------------------------------------------------------- /widgets/src/resources/SpokeSelector-status.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/widgets/src/resources/SpokeSelector-status.css -------------------------------------------------------------------------------- /widgets/src/resources/SpokeSelector-title.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/widgets/src/resources/SpokeSelector-title.css -------------------------------------------------------------------------------- /widgets/src/resources/anaconda-selected-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/widgets/src/resources/anaconda-selected-icon.svg -------------------------------------------------------------------------------- /widgets/src/resources/left-arrow-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/widgets/src/resources/left-arrow-icon.png -------------------------------------------------------------------------------- /widgets/src/resources/right-arrow-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/widgets/src/resources/right-arrow-icon.png -------------------------------------------------------------------------------- /widgets/src/widgets-common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/widgets/src/widgets-common.c -------------------------------------------------------------------------------- /widgets/src/widgets-common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhinstaller/anaconda/HEAD/widgets/src/widgets-common.h --------------------------------------------------------------------------------