├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── MIGRATION.md ├── README.md └── rpms ├── dbus-broker ├── LICENSE.Apache-2.0 ├── sources │ ├── 0001-dbus-socket-treat-MSG_CTRUNC-gracefully.patch │ ├── 0001-launch-improve-error-handling-for-opendir.patch │ ├── 0001-metrics-change-the-constant-used-for-invalid-timesta.patch │ └── 0001-units-system-add-messagebus-alias.patch └── specfiles │ └── dbus-broker.spec ├── dbus ├── sources │ └── 00-start-message-bus.sh └── specfiles │ └── dbus.spec ├── dcrpm ├── LICENSE.GPL2 ├── sources │ └── dcrpm.py └── specfiles │ └── dcrpm.spec ├── initscripts ├── LICENSE.GPL2 ├── README.FB.md ├── sources │ ├── Lots-of-documentation.patch │ ├── ifup-tunnel--Support--external--tunnels---172-.patch │ ├── initscripts-9.49.39-introduce-ARPUDATE.patch │ └── network--add-knob-to-optionally-keep-interfaces-up-during-shutdown---154-.patch └── specfiles │ └── initscripts.spec ├── libbpf ├── LICENSE.GPL2 └── specfiles │ └── libbpf.spec ├── meson └── specfiles │ └── meson.spec ├── mkosi ├── LICENSE.LGPL2.1 └── specfiles │ └── mkosi.spec ├── ninja-build ├── sources │ ├── macros.ninja │ └── ninja.vim └── specfiles │ └── ninja-build.spec ├── python3-dnf-flunk-dependent-remove ├── LICENSE.GPL2 ├── sources │ └── flunk_dependent_remove.py ├── specfiles │ └── python3-dnf-flunk-dependent-remove.spec └── tests.txt ├── python34-cssselect └── specfiles │ └── python34-cssselect.spec ├── python34-lxml └── specfiles │ └── python34-lxml.spec ├── systemd-compat-libs ├── LICENSE.LGPL2.1 └── specfiles │ └── systemd-compat-libs.spec ├── systemd ├── LICENSE.LGPL2.1 ├── sources │ ├── 0001-Do-not-assert-in-test_add_acls_for_user.patch │ ├── 0001-Revert-test-path-increase-timeout.patch │ ├── 0001-bpf-pid1-Pin-reference-to-BPF-programs-for-post-cold.patch │ ├── 0001-test-acl-util-output-more-debug-info.patch │ ├── 0002-core-clean-up-inactive-failed-service-scope-s-cgroup.patch │ ├── 0002-test-path-do-not-fail-the-test-if-we-fail-to-start-s.patch │ ├── 0003-timer-add-new-feature-FixedRandomDelay.patch │ ├── 16803_fix_asserts_conditions.patch │ ├── 16838_16857_improve_path_search.patch │ ├── 16940_cleanup_socket_econn_handling.patch │ ├── 17031_propagate_start_limit_hit.patch │ ├── 17082_nspawn_tty_tweaks.patch │ ├── 20-grubby.install │ ├── 20-yama-ptrace.conf │ ├── FB--Add-FusionIO-device--dev-fio-persistante-storage-udev-rule.patch │ ├── macros.sysusers │ ├── purge-nobody-user │ ├── split-files.py │ ├── systemd-journal-gatewayd.xml │ ├── systemd-journal-remote.xml │ ├── systemd-udev-trigger-no-reload.conf │ ├── systemd-user │ ├── sysusers.attr │ ├── sysusers.generate-pre.sh │ ├── sysusers.prov │ ├── triggers.systemd │ └── yum-protect-systemd.conf └── specfiles │ └── systemd.spec └── util-linux ├── LICENSE.GPL2 ├── sources ├── 2.28-login-lastlog-create.patch ├── column-fix-leading-space-characters-bug.patch ├── util-linux-60-raw.rules ├── util-linux-chsh-chfn.pamd ├── util-linux-login.pamd ├── util-linux-remote.pamd ├── util-linux-runuser-l.pamd ├── util-linux-runuser.pamd ├── util-linux-su-l.pamd └── util-linux-su.pamd └── specfiles └── util-linux.spec /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/rpm-backports/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/rpm-backports/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/rpm-backports/HEAD/LICENSE -------------------------------------------------------------------------------- /MIGRATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/rpm-backports/HEAD/MIGRATION.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/rpm-backports/HEAD/README.md -------------------------------------------------------------------------------- /rpms/dbus-broker/LICENSE.Apache-2.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/rpm-backports/HEAD/rpms/dbus-broker/LICENSE.Apache-2.0 -------------------------------------------------------------------------------- /rpms/dbus-broker/sources/0001-dbus-socket-treat-MSG_CTRUNC-gracefully.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/rpm-backports/HEAD/rpms/dbus-broker/sources/0001-dbus-socket-treat-MSG_CTRUNC-gracefully.patch -------------------------------------------------------------------------------- /rpms/dbus-broker/sources/0001-launch-improve-error-handling-for-opendir.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/rpm-backports/HEAD/rpms/dbus-broker/sources/0001-launch-improve-error-handling-for-opendir.patch -------------------------------------------------------------------------------- /rpms/dbus-broker/sources/0001-metrics-change-the-constant-used-for-invalid-timesta.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/rpm-backports/HEAD/rpms/dbus-broker/sources/0001-metrics-change-the-constant-used-for-invalid-timesta.patch -------------------------------------------------------------------------------- /rpms/dbus-broker/sources/0001-units-system-add-messagebus-alias.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/rpm-backports/HEAD/rpms/dbus-broker/sources/0001-units-system-add-messagebus-alias.patch -------------------------------------------------------------------------------- /rpms/dbus-broker/specfiles/dbus-broker.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/rpm-backports/HEAD/rpms/dbus-broker/specfiles/dbus-broker.spec -------------------------------------------------------------------------------- /rpms/dbus/sources/00-start-message-bus.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/rpm-backports/HEAD/rpms/dbus/sources/00-start-message-bus.sh -------------------------------------------------------------------------------- /rpms/dbus/specfiles/dbus.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/rpm-backports/HEAD/rpms/dbus/specfiles/dbus.spec -------------------------------------------------------------------------------- /rpms/dcrpm/LICENSE.GPL2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/rpm-backports/HEAD/rpms/dcrpm/LICENSE.GPL2 -------------------------------------------------------------------------------- /rpms/dcrpm/sources/dcrpm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/rpm-backports/HEAD/rpms/dcrpm/sources/dcrpm.py -------------------------------------------------------------------------------- /rpms/dcrpm/specfiles/dcrpm.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/rpm-backports/HEAD/rpms/dcrpm/specfiles/dcrpm.spec -------------------------------------------------------------------------------- /rpms/initscripts/LICENSE.GPL2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/rpm-backports/HEAD/rpms/initscripts/LICENSE.GPL2 -------------------------------------------------------------------------------- /rpms/initscripts/README.FB.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/rpm-backports/HEAD/rpms/initscripts/README.FB.md -------------------------------------------------------------------------------- /rpms/initscripts/sources/Lots-of-documentation.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/rpm-backports/HEAD/rpms/initscripts/sources/Lots-of-documentation.patch -------------------------------------------------------------------------------- /rpms/initscripts/sources/ifup-tunnel--Support--external--tunnels---172-.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/rpm-backports/HEAD/rpms/initscripts/sources/ifup-tunnel--Support--external--tunnels---172-.patch -------------------------------------------------------------------------------- /rpms/initscripts/sources/initscripts-9.49.39-introduce-ARPUDATE.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/rpm-backports/HEAD/rpms/initscripts/sources/initscripts-9.49.39-introduce-ARPUDATE.patch -------------------------------------------------------------------------------- /rpms/initscripts/sources/network--add-knob-to-optionally-keep-interfaces-up-during-shutdown---154-.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/rpm-backports/HEAD/rpms/initscripts/sources/network--add-knob-to-optionally-keep-interfaces-up-during-shutdown---154-.patch -------------------------------------------------------------------------------- /rpms/initscripts/specfiles/initscripts.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/rpm-backports/HEAD/rpms/initscripts/specfiles/initscripts.spec -------------------------------------------------------------------------------- /rpms/libbpf/LICENSE.GPL2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/rpm-backports/HEAD/rpms/libbpf/LICENSE.GPL2 -------------------------------------------------------------------------------- /rpms/libbpf/specfiles/libbpf.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/rpm-backports/HEAD/rpms/libbpf/specfiles/libbpf.spec -------------------------------------------------------------------------------- /rpms/meson/specfiles/meson.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/rpm-backports/HEAD/rpms/meson/specfiles/meson.spec -------------------------------------------------------------------------------- /rpms/mkosi/LICENSE.LGPL2.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/rpm-backports/HEAD/rpms/mkosi/LICENSE.LGPL2.1 -------------------------------------------------------------------------------- /rpms/mkosi/specfiles/mkosi.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/rpm-backports/HEAD/rpms/mkosi/specfiles/mkosi.spec -------------------------------------------------------------------------------- /rpms/ninja-build/sources/macros.ninja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/rpm-backports/HEAD/rpms/ninja-build/sources/macros.ninja -------------------------------------------------------------------------------- /rpms/ninja-build/sources/ninja.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/rpm-backports/HEAD/rpms/ninja-build/sources/ninja.vim -------------------------------------------------------------------------------- /rpms/ninja-build/specfiles/ninja-build.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/rpm-backports/HEAD/rpms/ninja-build/specfiles/ninja-build.spec -------------------------------------------------------------------------------- /rpms/python3-dnf-flunk-dependent-remove/LICENSE.GPL2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/rpm-backports/HEAD/rpms/python3-dnf-flunk-dependent-remove/LICENSE.GPL2 -------------------------------------------------------------------------------- /rpms/python3-dnf-flunk-dependent-remove/sources/flunk_dependent_remove.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/rpm-backports/HEAD/rpms/python3-dnf-flunk-dependent-remove/sources/flunk_dependent_remove.py -------------------------------------------------------------------------------- /rpms/python3-dnf-flunk-dependent-remove/specfiles/python3-dnf-flunk-dependent-remove.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/rpm-backports/HEAD/rpms/python3-dnf-flunk-dependent-remove/specfiles/python3-dnf-flunk-dependent-remove.spec -------------------------------------------------------------------------------- /rpms/python3-dnf-flunk-dependent-remove/tests.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/rpm-backports/HEAD/rpms/python3-dnf-flunk-dependent-remove/tests.txt -------------------------------------------------------------------------------- /rpms/python34-cssselect/specfiles/python34-cssselect.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/rpm-backports/HEAD/rpms/python34-cssselect/specfiles/python34-cssselect.spec -------------------------------------------------------------------------------- /rpms/python34-lxml/specfiles/python34-lxml.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/rpm-backports/HEAD/rpms/python34-lxml/specfiles/python34-lxml.spec -------------------------------------------------------------------------------- /rpms/systemd-compat-libs/LICENSE.LGPL2.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/rpm-backports/HEAD/rpms/systemd-compat-libs/LICENSE.LGPL2.1 -------------------------------------------------------------------------------- /rpms/systemd-compat-libs/specfiles/systemd-compat-libs.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/rpm-backports/HEAD/rpms/systemd-compat-libs/specfiles/systemd-compat-libs.spec -------------------------------------------------------------------------------- /rpms/systemd/LICENSE.LGPL2.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/rpm-backports/HEAD/rpms/systemd/LICENSE.LGPL2.1 -------------------------------------------------------------------------------- /rpms/systemd/sources/0001-Do-not-assert-in-test_add_acls_for_user.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/rpm-backports/HEAD/rpms/systemd/sources/0001-Do-not-assert-in-test_add_acls_for_user.patch -------------------------------------------------------------------------------- /rpms/systemd/sources/0001-Revert-test-path-increase-timeout.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/rpm-backports/HEAD/rpms/systemd/sources/0001-Revert-test-path-increase-timeout.patch -------------------------------------------------------------------------------- /rpms/systemd/sources/0001-bpf-pid1-Pin-reference-to-BPF-programs-for-post-cold.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/rpm-backports/HEAD/rpms/systemd/sources/0001-bpf-pid1-Pin-reference-to-BPF-programs-for-post-cold.patch -------------------------------------------------------------------------------- /rpms/systemd/sources/0001-test-acl-util-output-more-debug-info.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/rpm-backports/HEAD/rpms/systemd/sources/0001-test-acl-util-output-more-debug-info.patch -------------------------------------------------------------------------------- /rpms/systemd/sources/0002-core-clean-up-inactive-failed-service-scope-s-cgroup.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/rpm-backports/HEAD/rpms/systemd/sources/0002-core-clean-up-inactive-failed-service-scope-s-cgroup.patch -------------------------------------------------------------------------------- /rpms/systemd/sources/0002-test-path-do-not-fail-the-test-if-we-fail-to-start-s.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/rpm-backports/HEAD/rpms/systemd/sources/0002-test-path-do-not-fail-the-test-if-we-fail-to-start-s.patch -------------------------------------------------------------------------------- /rpms/systemd/sources/0003-timer-add-new-feature-FixedRandomDelay.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/rpm-backports/HEAD/rpms/systemd/sources/0003-timer-add-new-feature-FixedRandomDelay.patch -------------------------------------------------------------------------------- /rpms/systemd/sources/16803_fix_asserts_conditions.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/rpm-backports/HEAD/rpms/systemd/sources/16803_fix_asserts_conditions.patch -------------------------------------------------------------------------------- /rpms/systemd/sources/16838_16857_improve_path_search.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/rpm-backports/HEAD/rpms/systemd/sources/16838_16857_improve_path_search.patch -------------------------------------------------------------------------------- /rpms/systemd/sources/16940_cleanup_socket_econn_handling.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/rpm-backports/HEAD/rpms/systemd/sources/16940_cleanup_socket_econn_handling.patch -------------------------------------------------------------------------------- /rpms/systemd/sources/17031_propagate_start_limit_hit.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/rpm-backports/HEAD/rpms/systemd/sources/17031_propagate_start_limit_hit.patch -------------------------------------------------------------------------------- /rpms/systemd/sources/17082_nspawn_tty_tweaks.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/rpm-backports/HEAD/rpms/systemd/sources/17082_nspawn_tty_tweaks.patch -------------------------------------------------------------------------------- /rpms/systemd/sources/20-grubby.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/rpm-backports/HEAD/rpms/systemd/sources/20-grubby.install -------------------------------------------------------------------------------- /rpms/systemd/sources/20-yama-ptrace.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/rpm-backports/HEAD/rpms/systemd/sources/20-yama-ptrace.conf -------------------------------------------------------------------------------- /rpms/systemd/sources/FB--Add-FusionIO-device--dev-fio-persistante-storage-udev-rule.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/rpm-backports/HEAD/rpms/systemd/sources/FB--Add-FusionIO-device--dev-fio-persistante-storage-udev-rule.patch -------------------------------------------------------------------------------- /rpms/systemd/sources/macros.sysusers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/rpm-backports/HEAD/rpms/systemd/sources/macros.sysusers -------------------------------------------------------------------------------- /rpms/systemd/sources/purge-nobody-user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/rpm-backports/HEAD/rpms/systemd/sources/purge-nobody-user -------------------------------------------------------------------------------- /rpms/systemd/sources/split-files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/rpm-backports/HEAD/rpms/systemd/sources/split-files.py -------------------------------------------------------------------------------- /rpms/systemd/sources/systemd-journal-gatewayd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/rpm-backports/HEAD/rpms/systemd/sources/systemd-journal-gatewayd.xml -------------------------------------------------------------------------------- /rpms/systemd/sources/systemd-journal-remote.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/rpm-backports/HEAD/rpms/systemd/sources/systemd-journal-remote.xml -------------------------------------------------------------------------------- /rpms/systemd/sources/systemd-udev-trigger-no-reload.conf: -------------------------------------------------------------------------------- 1 | [Unit] 2 | # https://bugzilla.redhat.com/show_bug.cgi?id=1378974#c17 3 | RefuseManualStop=true 4 | -------------------------------------------------------------------------------- /rpms/systemd/sources/systemd-user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/rpm-backports/HEAD/rpms/systemd/sources/systemd-user -------------------------------------------------------------------------------- /rpms/systemd/sources/sysusers.attr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/rpm-backports/HEAD/rpms/systemd/sources/sysusers.attr -------------------------------------------------------------------------------- /rpms/systemd/sources/sysusers.generate-pre.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/rpm-backports/HEAD/rpms/systemd/sources/sysusers.generate-pre.sh -------------------------------------------------------------------------------- /rpms/systemd/sources/sysusers.prov: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/rpm-backports/HEAD/rpms/systemd/sources/sysusers.prov -------------------------------------------------------------------------------- /rpms/systemd/sources/triggers.systemd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/rpm-backports/HEAD/rpms/systemd/sources/triggers.systemd -------------------------------------------------------------------------------- /rpms/systemd/sources/yum-protect-systemd.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/rpm-backports/HEAD/rpms/systemd/sources/yum-protect-systemd.conf -------------------------------------------------------------------------------- /rpms/systemd/specfiles/systemd.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/rpm-backports/HEAD/rpms/systemd/specfiles/systemd.spec -------------------------------------------------------------------------------- /rpms/util-linux/LICENSE.GPL2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/rpm-backports/HEAD/rpms/util-linux/LICENSE.GPL2 -------------------------------------------------------------------------------- /rpms/util-linux/sources/2.28-login-lastlog-create.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/rpm-backports/HEAD/rpms/util-linux/sources/2.28-login-lastlog-create.patch -------------------------------------------------------------------------------- /rpms/util-linux/sources/column-fix-leading-space-characters-bug.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/rpm-backports/HEAD/rpms/util-linux/sources/column-fix-leading-space-characters-bug.patch -------------------------------------------------------------------------------- /rpms/util-linux/sources/util-linux-60-raw.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/rpm-backports/HEAD/rpms/util-linux/sources/util-linux-60-raw.rules -------------------------------------------------------------------------------- /rpms/util-linux/sources/util-linux-chsh-chfn.pamd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/rpm-backports/HEAD/rpms/util-linux/sources/util-linux-chsh-chfn.pamd -------------------------------------------------------------------------------- /rpms/util-linux/sources/util-linux-login.pamd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/rpm-backports/HEAD/rpms/util-linux/sources/util-linux-login.pamd -------------------------------------------------------------------------------- /rpms/util-linux/sources/util-linux-remote.pamd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/rpm-backports/HEAD/rpms/util-linux/sources/util-linux-remote.pamd -------------------------------------------------------------------------------- /rpms/util-linux/sources/util-linux-runuser-l.pamd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/rpm-backports/HEAD/rpms/util-linux/sources/util-linux-runuser-l.pamd -------------------------------------------------------------------------------- /rpms/util-linux/sources/util-linux-runuser.pamd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/rpm-backports/HEAD/rpms/util-linux/sources/util-linux-runuser.pamd -------------------------------------------------------------------------------- /rpms/util-linux/sources/util-linux-su-l.pamd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/rpm-backports/HEAD/rpms/util-linux/sources/util-linux-su-l.pamd -------------------------------------------------------------------------------- /rpms/util-linux/sources/util-linux-su.pamd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/rpm-backports/HEAD/rpms/util-linux/sources/util-linux-su.pamd -------------------------------------------------------------------------------- /rpms/util-linux/specfiles/util-linux.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/rpm-backports/HEAD/rpms/util-linux/specfiles/util-linux.spec --------------------------------------------------------------------------------