├── .dir-locals.el ├── .editorconfig ├── .gitattributes ├── .github ├── CONTRIBUTING.md ├── ISSUE_TEMPLATE │ ├── Bug_report.md │ └── Feature_request.md ├── RELEASE.md ├── advanced-commit-linter.yml ├── auto-merge.yml ├── codeql-config.yml ├── codeql-custom.qls ├── codeql-queries │ ├── PotentiallyDangerousFunction.ql │ ├── UninitializedVariableWithCleanup.ql │ └── qlpack.yml ├── pull-request-validator.yml ├── regression-sniffer.yml ├── tracker-validator.yml └── workflows │ ├── codeql.yml │ ├── deploy-man-pages.yml │ ├── differential-shellcheck.yml │ ├── gather-metadata.yml │ ├── source-git-automation-on-demand.yml │ ├── source-git-automation.yml │ ├── unit_tests.sh │ └── unit_tests.yml ├── .gitignore ├── .mailmap ├── .mkosi ├── mkosi.arch ├── mkosi.debian ├── mkosi.fedora └── mkosi.ubuntu ├── .vimrc ├── .ycm_extra_conf.py ├── CONTRIBUTING.md ├── LICENSE.GPL2 ├── LICENSE.LGPL2.1 ├── Makefile ├── NEWS ├── README ├── README.md ├── TODO ├── catalog ├── meson.build ├── systemd.be.catalog.in ├── systemd.be@latin.catalog.in ├── systemd.bg.catalog.in ├── systemd.catalog.in ├── systemd.da.catalog.in ├── systemd.de.catalog.in ├── systemd.fr.catalog.in ├── systemd.hr.catalog.in ├── systemd.hu.catalog.in ├── systemd.it.catalog.in ├── systemd.ko.catalog.in ├── systemd.pl.catalog.in ├── systemd.pt_BR.catalog.in ├── systemd.ru.catalog.in ├── systemd.sr.catalog.in ├── systemd.zh_CN.catalog.in └── systemd.zh_TW.catalog.in ├── coccinelle ├── bool-cast.cocci ├── close-above-stdio.cocci ├── const-strlen.cocci ├── debug-logging.cocci ├── div-round-up.cocci ├── dup-fcntl.cocci ├── empty-or-root.cocci ├── empty-to-null.cocci ├── enotsup.cocci ├── equals-null.cocci ├── errno.cocci ├── exit-0.cocci ├── flags-set.cocci ├── free_and_replace.cocci ├── hashmap_free.cocci ├── htonl.cocci ├── in_set.cocci ├── isempty.cocci ├── malloc_multiply.cocci ├── memzero.cocci ├── mfree.cocci ├── mfree_return.cocci ├── no-if-assignments.cocci ├── not_in_set.cocci ├── o-ndelay.cocci ├── reallocarray.cocci ├── run-coccinelle.sh ├── safe_close-no-if.cocci ├── safe_close.cocci ├── safe_closedir.cocci ├── safe_fclose.cocci ├── strempty.cocci ├── strjoin.cocci ├── strjoina.cocci ├── strv_free.cocci ├── take-fd.cocci ├── take-ptr.cocci ├── while-true.cocci └── xsprintf.cocci ├── configure ├── doc ├── BOOT_LOADER_SPECIFICATION.md ├── CGROUP_DELEGATION.md ├── CODE_QUALITY.md ├── CODING_STYLE ├── DISTRO_PORTING ├── ENVIRONMENT.md ├── HACKING ├── PORTABLE_SERVICES.md ├── TRANSIENT-SETTINGS.md ├── TRANSLATORS ├── UIDS-GIDS.md ├── sysvinit │ ├── README.in │ └── meson.build └── var-log │ ├── README.in │ └── meson.build ├── factory └── etc │ ├── nsswitch.conf │ └── pam.d │ ├── other │ └── system-auth ├── hwdb ├── .gitattributes ├── .gitignore ├── 20-OUI.hwdb ├── 20-acpi-vendor.hwdb ├── 20-acpi-vendor.hwdb.patch ├── 20-bluetooth-vendor-product.hwdb ├── 20-dmi-id.hwdb ├── 20-net-ifname.hwdb ├── 20-pci-classes.hwdb ├── 20-pci-vendor-model.hwdb ├── 20-sdio-classes.hwdb ├── 20-sdio-vendor-model.hwdb ├── 20-usb-classes.hwdb ├── 20-usb-vendor-model.hwdb ├── 20-vmbus-class.hwdb ├── 60-autosuspend-fingerprint-reader.hwdb ├── 60-autosuspend.hwdb ├── 60-evdev.hwdb ├── 60-input-id.hwdb ├── 60-keyboard.hwdb ├── 60-seat.hwdb ├── 60-sensor.hwdb ├── 70-joystick.hwdb ├── 70-mouse.hwdb ├── 70-pointingstick.hwdb ├── 70-touchpad.hwdb ├── 80-ieee1394-unit-function.hwdb ├── acpi-update.py ├── acpi_id_registry.html ├── ids_parser.py ├── ma-large.txt ├── ma-medium.txt ├── ma-small.txt ├── meson.build ├── parse_hwdb.py ├── pci.ids ├── pnp_id_registry.html ├── sdio.ids └── usb.ids ├── man ├── .dir-locals.el ├── 50-xdg-data-dirs.sh ├── 90-rearrange-path.py ├── binfmt.d.xml ├── bootctl.xml ├── bootup.xml ├── busctl.xml ├── coredump.conf.xml ├── coredumpctl.xml ├── crypttab.xml ├── custom-entities.ent.in ├── custom-html.xsl ├── custom-man.xsl ├── daemon.xml ├── dnssec-trust-anchors.d.xml ├── environment.d.xml ├── file-hierarchy.xml ├── glib-event-glue.c ├── halt.xml ├── hostname.xml ├── hostnamectl.xml ├── hwdb.xml ├── inotify-watch-tmp.c ├── journal-iterate-poll.c ├── journal-iterate-wait.c ├── journal-remote.conf.xml ├── journal-upload.conf.xml ├── journalctl.xml ├── journald.conf.xml ├── kernel-command-line.xml ├── kernel-install.xml ├── less-variables.xml ├── libsystemd-pkgconfig.xml ├── libudev.xml ├── loader.conf.xml ├── locale.conf.xml ├── localectl.xml ├── localtime.xml ├── loginctl.xml ├── logind.conf.xml ├── machine-id.xml ├── machine-info.xml ├── machinectl.xml ├── meson.build ├── modules-load.d.xml ├── networkctl.xml ├── networkd.conf.xml ├── nss-myhostname.xml ├── nss-mymachines.xml ├── nss-resolve.xml ├── nss-systemd.xml ├── os-release.xml ├── pam_systemd.xml ├── portablectl.xml ├── pstore.conf.xml ├── resolvectl.xml ├── resolved.conf.xml ├── rules │ └── meson.build ├── runlevel.xml ├── sd-bus-errors.xml ├── sd-bus.xml ├── sd-daemon.xml ├── sd-event.xml ├── sd-id128.xml ├── sd-journal.xml ├── sd-login.xml ├── sd_booted.xml ├── sd_bus_add_match.xml ├── sd_bus_creds_get_pid.xml ├── sd_bus_creds_new_from_pid.xml ├── sd_bus_default.xml ├── sd_bus_error.xml ├── sd_bus_error_add_map.xml ├── sd_bus_get_fd.xml ├── sd_bus_get_n_queued_read.xml ├── sd_bus_is_open.xml ├── sd_bus_message_append.xml ├── sd_bus_message_append_array.xml ├── sd_bus_message_append_basic.xml ├── sd_bus_message_append_string_memfd.xml ├── sd_bus_message_append_strv.xml ├── sd_bus_message_get_cookie.xml ├── sd_bus_message_get_monotonic_usec.xml ├── sd_bus_message_read_basic.xml ├── sd_bus_message_set_destination.xml ├── sd_bus_negotiate_fds.xml ├── sd_bus_new.xml ├── sd_bus_path_encode.xml ├── sd_bus_process.xml ├── sd_bus_request_name.xml ├── sd_bus_set_connected_signal.xml ├── sd_bus_set_sender.xml ├── sd_bus_set_watch_bind.xml ├── sd_bus_slot_set_destroy_callback.xml ├── sd_bus_slot_set_floating.xml ├── sd_bus_track_add_name.xml ├── sd_bus_track_new.xml ├── sd_event_add_child.xml ├── sd_event_add_defer.xml ├── sd_event_add_inotify.xml ├── sd_event_add_io.xml ├── sd_event_add_signal.xml ├── sd_event_add_time.xml ├── sd_event_exit.xml ├── sd_event_get_fd.xml ├── sd_event_new.xml ├── sd_event_now.xml ├── sd_event_run.xml ├── sd_event_set_watchdog.xml ├── sd_event_source_get_event.xml ├── sd_event_source_get_pending.xml ├── sd_event_source_set_description.xml ├── sd_event_source_set_destroy_callback.xml ├── sd_event_source_set_enabled.xml ├── sd_event_source_set_prepare.xml ├── sd_event_source_set_priority.xml ├── sd_event_source_set_userdata.xml ├── sd_event_source_unref.xml ├── sd_event_wait.xml ├── sd_get_seats.xml ├── sd_id128_get_machine.xml ├── sd_id128_randomize.xml ├── sd_id128_to_string.xml ├── sd_is_fifo.xml ├── sd_journal_add_match.xml ├── sd_journal_enumerate_fields.xml ├── sd_journal_get_catalog.xml ├── sd_journal_get_cursor.xml ├── sd_journal_get_cutoff_realtime_usec.xml ├── sd_journal_get_data.xml ├── sd_journal_get_fd.xml ├── sd_journal_get_realtime_usec.xml ├── sd_journal_get_usage.xml ├── sd_journal_has_runtime_files.xml ├── sd_journal_next.xml ├── sd_journal_open.xml ├── sd_journal_print.xml ├── sd_journal_query_unique.xml ├── sd_journal_seek_head.xml ├── sd_journal_stream_fd.xml ├── sd_listen_fds.xml ├── sd_login_monitor_new.xml ├── sd_machine_get_class.xml ├── sd_notify.xml ├── sd_pid_get_owner_uid.xml ├── sd_seat_get_active.xml ├── sd_session_is_active.xml ├── sd_uid_get_state.xml ├── sd_watchdog_enabled.xml ├── shutdown.xml ├── standard-conf.xml ├── standard-options.xml ├── sysctl.d.xml ├── systemctl.xml ├── systemd-analyze.xml ├── systemd-ask-password-console.service.xml ├── systemd-ask-password.xml ├── systemd-backlight@.service.xml ├── systemd-binfmt.service.xml ├── systemd-boot.xml ├── systemd-cat.xml ├── systemd-cgls.xml ├── systemd-cgtop.xml ├── systemd-coredump.xml ├── systemd-cryptsetup-generator.xml ├── systemd-cryptsetup@.service.xml ├── systemd-debug-generator.xml ├── systemd-delta.xml ├── systemd-detect-virt.xml ├── systemd-environment-d-generator.xml ├── systemd-escape.xml ├── systemd-firstboot.xml ├── systemd-fsck@.service.xml ├── systemd-fstab-generator.xml ├── systemd-getty-generator.xml ├── systemd-gpt-auto-generator.xml ├── systemd-halt.service.xml ├── systemd-hibernate-resume-generator.xml ├── systemd-hibernate-resume@.service.xml ├── systemd-hostnamed.service.xml ├── systemd-hwdb.xml ├── systemd-importd.service.xml ├── systemd-inhibit.xml ├── systemd-initctl.service.xml ├── systemd-journal-gatewayd.service.xml ├── systemd-journal-remote.service.xml ├── systemd-journal-upload.service.xml ├── systemd-journald.service.xml ├── systemd-localed.service.xml ├── systemd-logind.service.xml ├── systemd-machine-id-commit.service.xml ├── systemd-machine-id-setup.xml ├── systemd-machined.service.xml ├── systemd-makefs@.service.xml ├── systemd-modules-load.service.xml ├── systemd-mount.xml ├── systemd-networkd-wait-online.service.xml ├── systemd-networkd.service.xml ├── systemd-notify.xml ├── systemd-nspawn.xml ├── systemd-path.xml ├── systemd-portabled.service.xml ├── systemd-pstore.service.xml ├── systemd-quotacheck.service.xml ├── systemd-random-seed.service.xml ├── systemd-rc-local-generator.xml ├── systemd-remount-fs.service.xml ├── systemd-resolved.service.xml ├── systemd-rfkill.service.xml ├── systemd-run.xml ├── systemd-sleep.conf.xml ├── systemd-socket-activate.xml ├── systemd-socket-proxyd.xml ├── systemd-suspend.service.xml ├── systemd-sysctl.service.xml ├── systemd-system-update-generator.xml ├── systemd-system.conf.xml ├── systemd-sysusers.xml ├── systemd-sysv-generator.xml ├── systemd-time-wait-sync.service.xml ├── systemd-timedated.service.xml ├── systemd-timesyncd.service.xml ├── systemd-tmpfiles.xml ├── systemd-tty-ask-password-agent.xml ├── systemd-udevd.service.xml ├── systemd-update-done.service.xml ├── systemd-update-utmp.service.xml ├── systemd-user-sessions.service.xml ├── systemd-vconsole-setup.service.xml ├── systemd-veritysetup-generator.xml ├── systemd-veritysetup@.service.xml ├── systemd-volatile-root.service.xml ├── systemd.automount.xml ├── systemd.device.xml ├── systemd.dnssd.xml ├── systemd.environment-generator.xml ├── systemd.exec.xml ├── systemd.generator.xml ├── systemd.journal-fields.xml ├── systemd.kill.xml ├── systemd.link.xml ├── systemd.mount.xml ├── systemd.net-naming-scheme.xml ├── systemd.netdev.xml ├── systemd.network.xml ├── systemd.nspawn.xml ├── systemd.offline-updates.xml ├── systemd.path.xml ├── systemd.preset.xml ├── systemd.resource-control.xml ├── systemd.scope.xml ├── systemd.service.xml ├── systemd.slice.xml ├── systemd.socket.xml ├── systemd.special.xml ├── systemd.swap.xml ├── systemd.syntax.xml ├── systemd.target.xml ├── systemd.time.xml ├── systemd.timer.xml ├── systemd.unit.xml ├── systemd.xml ├── sysusers.d.xml ├── telinit.xml ├── timedatectl.xml ├── timesyncd.conf.xml ├── tmpfiles.d.xml ├── udev.conf.xml ├── udev.xml ├── udev_device_get_syspath.xml ├── udev_device_has_tag.xml ├── udev_device_new_from_syspath.xml ├── udev_enumerate_add_match_subsystem.xml ├── udev_enumerate_new.xml ├── udev_enumerate_scan_devices.xml ├── udev_list_entry.xml ├── udev_monitor_filter_update.xml ├── udev_monitor_new_from_netlink.xml ├── udev_monitor_receive_device.xml ├── udev_new.xml ├── udevadm.xml ├── user-system-options.xml └── vconsole.conf.xml ├── meson.build ├── meson_options.txt ├── mkosi.build ├── mkosi.default ├── modprobe.d └── systemd.conf ├── network ├── 80-container-host0.network ├── 80-container-ve.network ├── 80-container-vz.network ├── 99-default.link └── meson.build ├── po ├── .gitignore ├── LINGUAS ├── POTFILES.in ├── POTFILES.skip ├── be.po ├── be@latin.po ├── bg.po ├── ca.po ├── cs.po ├── da.po ├── de.po ├── el.po ├── es.po ├── fr.po ├── gl.po ├── hr.po ├── hu.po ├── id.po ├── it.po ├── its │ ├── polkit.its │ └── polkit.loc ├── ja.po ├── ko.po ├── meson.build ├── pl.po ├── pt_BR.po ├── ro.po ├── ru.po ├── sk.po ├── sr.po ├── sv.po ├── tr.po ├── uk.po ├── zh_CN.po └── zh_TW.po ├── presets ├── 90-systemd.preset ├── meson.build └── user │ └── 90-systemd.preset ├── rules ├── 40-elevator.rules ├── 40-redhat.rules ├── 50-udev-default.rules.in ├── 60-alias-kmsg.rules ├── 60-block.rules ├── 60-cdrom_id.rules ├── 60-drm.rules ├── 60-evdev.rules ├── 60-fido-id.rules ├── 60-input-id.rules ├── 60-persistent-alsa.rules ├── 60-persistent-input.rules ├── 60-persistent-storage-tape.rules ├── 60-persistent-storage.rules ├── 60-persistent-v4l.rules ├── 60-sensor.rules ├── 60-serial.rules ├── 64-btrfs.rules.in ├── 70-joystick.rules ├── 70-mouse.rules ├── 70-touchpad.rules ├── 73-idrac.rules ├── 75-net-description.rules ├── 75-probe_mtd.rules ├── 78-sound-card.rules ├── 80-drivers.rules ├── 80-net-setup-link.rules ├── 99-systemd.rules.in └── meson.build ├── shell-completion ├── bash │ ├── bootctl │ ├── busctl │ ├── coredumpctl │ ├── hostnamectl │ ├── journalctl │ ├── kernel-install │ ├── localectl │ ├── loginctl │ ├── machinectl │ ├── meson.build │ ├── networkctl │ ├── portablectl │ ├── resolvectl │ ├── systemctl.in │ ├── systemd-analyze │ ├── systemd-cat │ ├── systemd-cgls │ ├── systemd-cgtop │ ├── systemd-delta │ ├── systemd-detect-virt │ ├── systemd-nspawn │ ├── systemd-path │ ├── systemd-resolve │ ├── systemd-run │ ├── timedatectl │ └── udevadm └── zsh │ ├── _bootctl │ ├── _busctl │ ├── _coredumpctl │ ├── _hostnamectl │ ├── _journalctl │ ├── _kernel-install │ ├── _localectl │ ├── _loginctl │ ├── _machinectl │ ├── _networkctl │ ├── _sd_hosts_or_user_at_host │ ├── _sd_machines │ ├── _sd_outputmodes │ ├── _sd_unit_files │ ├── _systemctl.in │ ├── _systemd │ ├── _systemd-analyze │ ├── _systemd-delta │ ├── _systemd-inhibit │ ├── _systemd-nspawn │ ├── _systemd-resolve │ ├── _systemd-run │ ├── _systemd-tmpfiles │ ├── _timedatectl │ ├── _udevadm │ └── meson.build ├── src ├── ac-power │ └── ac-power.c ├── activate │ └── activate.c ├── analyze │ ├── analyze-security.c │ ├── analyze-security.h │ ├── analyze-verify.c │ ├── analyze-verify.h │ ├── analyze.c │ └── meson.build ├── ask-password │ └── ask-password.c ├── backlight │ └── backlight.c ├── basic │ ├── MurmurHash2.c │ ├── MurmurHash2.h │ ├── af-list.c │ ├── af-list.h │ ├── af-to-name.awk │ ├── alloc-util.c │ ├── alloc-util.h │ ├── architecture.c │ ├── architecture.h │ ├── arphrd-list.c │ ├── arphrd-list.h │ ├── arphrd-to-name.awk │ ├── async.c │ ├── async.h │ ├── audit-util.c │ ├── audit-util.h │ ├── barrier.c │ ├── barrier.h │ ├── bitmap.c │ ├── bitmap.h │ ├── blkid-util.h │ ├── blockdev-util.c │ ├── blockdev-util.h │ ├── bpf-program.c │ ├── bpf-program.h │ ├── btrfs-ctree.h │ ├── btrfs-util.c │ ├── btrfs-util.h │ ├── build.h │ ├── bus-label.c │ ├── bus-label.h │ ├── calendarspec.c │ ├── calendarspec.h │ ├── cap-list.c │ ├── cap-list.h │ ├── cap-to-name.awk │ ├── capability-util.c │ ├── capability-util.h │ ├── cgroup-util.c │ ├── cgroup-util.h │ ├── chattr-util.c │ ├── chattr-util.h │ ├── clock-util.c │ ├── clock-util.h │ ├── conf-files.c │ ├── conf-files.h │ ├── copy.c │ ├── copy.h │ ├── cpu-set-util.c │ ├── cpu-set-util.h │ ├── crypt-util.c │ ├── crypt-util.h │ ├── def.h │ ├── device-nodes.c │ ├── device-nodes.h │ ├── dirent-util.c │ ├── dirent-util.h │ ├── env-util.c │ ├── env-util.h │ ├── errno-list.c │ ├── errno-list.h │ ├── errno-to-name.awk │ ├── escape.c │ ├── escape.h │ ├── ether-addr-util.c │ ├── ether-addr-util.h │ ├── exec-util.c │ ├── exec-util.h │ ├── exit-status.c │ ├── exit-status.h │ ├── extract-word.c │ ├── extract-word.h │ ├── fd-util.c │ ├── fd-util.h │ ├── fileio-label.c │ ├── fileio-label.h │ ├── fileio.c │ ├── fileio.h │ ├── format-table.c │ ├── format-table.h │ ├── format-util.h │ ├── fs-util.c │ ├── fs-util.h │ ├── gcrypt-util.c │ ├── gcrypt-util.h │ ├── generate-af-list.sh │ ├── generate-arphrd-list.sh │ ├── generate-cap-list.sh │ ├── generate-errno-list.sh │ ├── generate-gperfs.py │ ├── generate-socket-protocol-list.sh │ ├── glob-util.c │ ├── glob-util.h │ ├── gunicode.c │ ├── gunicode.h │ ├── hash-funcs.c │ ├── hash-funcs.h │ ├── hashmap.c │ ├── hashmap.h │ ├── hexdecoct.c │ ├── hexdecoct.h │ ├── hostname-util.c │ ├── hostname-util.h │ ├── in-addr-util.c │ ├── in-addr-util.h │ ├── io-util.c │ ├── io-util.h │ ├── ioprio.h │ ├── journal-importer.c │ ├── journal-importer.h │ ├── khash.c │ ├── khash.h │ ├── label.c │ ├── label.h │ ├── list.h │ ├── locale-util.c │ ├── locale-util.h │ ├── lockfile-util.c │ ├── lockfile-util.h │ ├── log.c │ ├── log.h │ ├── login-util.c │ ├── login-util.h │ ├── macro.h │ ├── memfd-util.c │ ├── memfd-util.h │ ├── mempool.c │ ├── mempool.h │ ├── meson.build │ ├── missing.h │ ├── missing_syscall.h │ ├── mkdir-label.c │ ├── mkdir.c │ ├── mkdir.h │ ├── module-util.h │ ├── mount-util.c │ ├── mount-util.h │ ├── nss-util.h │ ├── ordered-set.c │ ├── ordered-set.h │ ├── os-util.c │ ├── os-util.h │ ├── pager.c │ ├── pager.h │ ├── parse-util.c │ ├── parse-util.h │ ├── path-util.c │ ├── path-util.h │ ├── prioq.c │ ├── prioq.h │ ├── proc-cmdline.c │ ├── proc-cmdline.h │ ├── process-util.c │ ├── process-util.h │ ├── procfs-util.c │ ├── procfs-util.h │ ├── random-util.c │ ├── random-util.h │ ├── ratelimit.c │ ├── ratelimit.h │ ├── raw-clone.h │ ├── raw-reboot.h │ ├── reboot-util.c │ ├── reboot-util.h │ ├── refcnt.h │ ├── replace-var.c │ ├── replace-var.h │ ├── rlimit-util.c │ ├── rlimit-util.h │ ├── rm-rf.c │ ├── rm-rf.h │ ├── securebits-util.c │ ├── securebits-util.h │ ├── securebits.h │ ├── selinux-util.c │ ├── selinux-util.h │ ├── set.h │ ├── sigbus.c │ ├── sigbus.h │ ├── signal-util.c │ ├── signal-util.h │ ├── siphash24.c │ ├── siphash24.h │ ├── smack-util.c │ ├── smack-util.h │ ├── socket-label.c │ ├── socket-protocol-list.c │ ├── socket-protocol-list.h │ ├── socket-protocol-to-name.awk │ ├── socket-util.c │ ├── socket-util.h │ ├── sparse-endian.h │ ├── special.h │ ├── stat-util.c │ ├── stat-util.h │ ├── stdio-util.h │ ├── strbuf.c │ ├── strbuf.h │ ├── string-table.c │ ├── string-table.h │ ├── string-util.c │ ├── string-util.h │ ├── strv.c │ ├── strv.h │ ├── strxcpyx.c │ ├── strxcpyx.h │ ├── syslog-util.c │ ├── syslog-util.h │ ├── terminal-util.c │ ├── terminal-util.h │ ├── time-util.c │ ├── time-util.h │ ├── umask-util.h │ ├── unaligned.h │ ├── unit-def.c │ ├── unit-def.h │ ├── unit-name.c │ ├── unit-name.h │ ├── user-util.c │ ├── user-util.h │ ├── utf8.c │ ├── utf8.h │ ├── util.c │ ├── util.h │ ├── verbs.c │ ├── verbs.h │ ├── virt.c │ ├── virt.h │ ├── web-util.c │ ├── web-util.h │ ├── xattr-util.c │ ├── xattr-util.h │ ├── xml.c │ └── xml.h ├── binfmt │ └── binfmt.c ├── boot │ ├── bootctl.c │ └── efi │ │ ├── boot.c │ │ ├── console.c │ │ ├── console.h │ │ ├── disk.c │ │ ├── disk.h │ │ ├── graphics.c │ │ ├── graphics.h │ │ ├── linux.c │ │ ├── linux.h │ │ ├── measure.c │ │ ├── measure.h │ │ ├── meson.build │ │ ├── no-undefined-symbols.sh │ │ ├── pe.c │ │ ├── pe.h │ │ ├── shim.c │ │ ├── shim.h │ │ ├── splash.c │ │ ├── splash.h │ │ ├── stub.c │ │ ├── util.c │ │ └── util.h ├── busctl │ ├── busctl-introspect.c │ ├── busctl-introspect.h │ └── busctl.c ├── cgls │ └── cgls.c ├── cgroups-agent │ └── cgroups-agent.c ├── cgtop │ └── cgtop.c ├── core │ ├── all-units.h │ ├── audit-fd.c │ ├── audit-fd.h │ ├── automount.c │ ├── automount.h │ ├── bpf-firewall.c │ ├── bpf-firewall.h │ ├── cgroup.c │ ├── cgroup.h │ ├── chown-recursive.c │ ├── chown-recursive.h │ ├── dbus-automount.c │ ├── dbus-automount.h │ ├── dbus-cgroup.c │ ├── dbus-cgroup.h │ ├── dbus-device.c │ ├── dbus-device.h │ ├── dbus-execute.c │ ├── dbus-execute.h │ ├── dbus-job.c │ ├── dbus-job.h │ ├── dbus-kill.c │ ├── dbus-kill.h │ ├── dbus-manager.c │ ├── dbus-manager.h │ ├── dbus-mount.c │ ├── dbus-mount.h │ ├── dbus-path.c │ ├── dbus-path.h │ ├── dbus-scope.c │ ├── dbus-scope.h │ ├── dbus-service.c │ ├── dbus-service.h │ ├── dbus-slice.c │ ├── dbus-slice.h │ ├── dbus-socket.c │ ├── dbus-socket.h │ ├── dbus-swap.c │ ├── dbus-swap.h │ ├── dbus-target.c │ ├── dbus-target.h │ ├── dbus-timer.c │ ├── dbus-timer.h │ ├── dbus-unit.c │ ├── dbus-unit.h │ ├── dbus-util.c │ ├── dbus-util.h │ ├── dbus.c │ ├── dbus.h │ ├── device.c │ ├── device.h │ ├── dynamic-user.c │ ├── dynamic-user.h │ ├── emergency-action.c │ ├── emergency-action.h │ ├── execute.c │ ├── execute.h │ ├── hostname-setup.c │ ├── hostname-setup.h │ ├── ima-setup.c │ ├── ima-setup.h │ ├── ip-address-access.c │ ├── ip-address-access.h │ ├── job.c │ ├── job.h │ ├── kill.c │ ├── kill.h │ ├── killall.c │ ├── killall.h │ ├── kmod-setup.c │ ├── kmod-setup.h │ ├── load-dropin.c │ ├── load-dropin.h │ ├── load-fragment-gperf-nulstr.awk │ ├── load-fragment-gperf.gperf.m4 │ ├── load-fragment.c │ ├── load-fragment.h │ ├── locale-setup.c │ ├── locale-setup.h │ ├── loopback-setup.c │ ├── loopback-setup.h │ ├── machine-id-setup.c │ ├── machine-id-setup.h │ ├── macros.systemd.in │ ├── main.c │ ├── manager.c │ ├── manager.h │ ├── meson.build │ ├── mount-setup.c │ ├── mount-setup.h │ ├── mount.c │ ├── mount.h │ ├── namespace.c │ ├── namespace.h │ ├── org.freedesktop.systemd1.conf │ ├── org.freedesktop.systemd1.policy.in │ ├── org.freedesktop.systemd1.service │ ├── path.c │ ├── path.h │ ├── scope.c │ ├── scope.h │ ├── selinux-access.c │ ├── selinux-access.h │ ├── selinux-setup.c │ ├── selinux-setup.h │ ├── service.c │ ├── service.h │ ├── show-status.c │ ├── show-status.h │ ├── shutdown.c │ ├── slice.c │ ├── slice.h │ ├── smack-setup.c │ ├── smack-setup.h │ ├── socket.c │ ├── socket.h │ ├── swap.c │ ├── swap.h │ ├── system.conf.in │ ├── systemd.pc.in │ ├── target.c │ ├── target.h │ ├── timer.c │ ├── timer.h │ ├── transaction.c │ ├── transaction.h │ ├── triggers.systemd.in │ ├── umount.c │ ├── umount.h │ ├── unit-printf.c │ ├── unit-printf.h │ ├── unit.c │ ├── unit.h │ └── user.conf ├── coredump │ ├── coredump-vacuum.c │ ├── coredump-vacuum.h │ ├── coredump.c │ ├── coredump.conf │ ├── coredumpctl.c │ ├── meson.build │ ├── stacktrace.c │ ├── stacktrace.h │ └── test-coredump-vacuum.c ├── cryptsetup │ ├── cryptsetup-generator.c │ └── cryptsetup.c ├── debug-generator │ └── debug-generator.c ├── delta │ └── delta.c ├── detect-virt │ └── detect-virt.c ├── dissect │ └── dissect.c ├── environment-d-generator │ └── environment-d-generator.c ├── escape │ └── escape.c ├── firstboot │ └── firstboot.c ├── fsck │ └── fsck.c ├── fstab-generator │ └── fstab-generator.c ├── fuzz │ ├── fuzz-bus-message.c │ ├── fuzz-compress.c │ ├── fuzz-dhcp-server.c │ ├── fuzz-dhcp-server.options │ ├── fuzz-dns-packet.c │ ├── fuzz-dns-packet.options │ ├── fuzz-fido-id-desc.c │ ├── fuzz-fido-id-desc.dict │ ├── fuzz-journal-remote.c │ ├── fuzz-journal-remote.options │ ├── fuzz-journald-audit.c │ ├── fuzz-journald-kmsg.c │ ├── fuzz-journald-native-fd.c │ ├── fuzz-journald-native.c │ ├── fuzz-journald-stream.c │ ├── fuzz-journald-stream.options │ ├── fuzz-journald-syslog.c │ ├── fuzz-journald.c │ ├── fuzz-journald.h │ ├── fuzz-main.c │ ├── fuzz-ndisc-rs.c │ ├── fuzz-unit-file.c │ ├── fuzz.h │ └── meson.build ├── getty-generator │ └── getty-generator.c ├── gpt-auto-generator │ └── gpt-auto-generator.c ├── hibernate-resume │ ├── hibernate-resume-generator.c │ └── hibernate-resume.c ├── hostname │ ├── hostnamectl.c │ ├── hostnamed.c │ ├── meson.build │ ├── org.freedesktop.hostname1.conf │ ├── org.freedesktop.hostname1.policy │ └── org.freedesktop.hostname1.service ├── hwdb │ └── hwdb.c ├── import │ ├── curl-util.c │ ├── curl-util.h │ ├── export-raw.c │ ├── export-raw.h │ ├── export-tar.c │ ├── export-tar.h │ ├── export.c │ ├── import-common.c │ ├── import-common.h │ ├── import-compress.c │ ├── import-compress.h │ ├── import-pubring.gpg │ ├── import-raw.c │ ├── import-raw.h │ ├── import-tar.c │ ├── import-tar.h │ ├── import.c │ ├── importd.c │ ├── meson.build │ ├── org.freedesktop.import1.conf │ ├── org.freedesktop.import1.policy │ ├── org.freedesktop.import1.service │ ├── pull-common.c │ ├── pull-common.h │ ├── pull-job.c │ ├── pull-job.h │ ├── pull-raw.c │ ├── pull-raw.h │ ├── pull-tar.c │ ├── pull-tar.h │ ├── pull.c │ ├── qcow2-util.c │ ├── qcow2-util.h │ └── test-qcow2.c ├── initctl │ └── initctl.c ├── journal-remote │ ├── browse.html │ ├── journal-gatewayd.c │ ├── journal-remote-main.c │ ├── journal-remote-parse.c │ ├── journal-remote-parse.h │ ├── journal-remote-write.c │ ├── journal-remote-write.h │ ├── journal-remote.c │ ├── journal-remote.conf.in │ ├── journal-remote.h │ ├── journal-upload-journal.c │ ├── journal-upload.c │ ├── journal-upload.conf.in │ ├── journal-upload.h │ ├── log-generator.py │ ├── meson.build │ ├── microhttpd-util.c │ └── microhttpd-util.h ├── journal │ ├── audit-type.c │ ├── audit-type.h │ ├── audit_type-to-name.awk │ ├── cat.c │ ├── catalog.c │ ├── catalog.h │ ├── compress.c │ ├── compress.h │ ├── fsprg.c │ ├── fsprg.h │ ├── generate-audit_type-list.sh │ ├── journal-authenticate.c │ ├── journal-authenticate.h │ ├── journal-def.h │ ├── journal-file.c │ ├── journal-file.h │ ├── journal-internal.h │ ├── journal-qrcode.c │ ├── journal-qrcode.h │ ├── journal-send.c │ ├── journal-vacuum.c │ ├── journal-vacuum.h │ ├── journal-verify.c │ ├── journal-verify.h │ ├── journalctl.c │ ├── journald-audit.c │ ├── journald-audit.h │ ├── journald-console.c │ ├── journald-console.h │ ├── journald-context.c │ ├── journald-context.h │ ├── journald-gperf.gperf │ ├── journald-kmsg.c │ ├── journald-kmsg.h │ ├── journald-native.c │ ├── journald-native.h │ ├── journald-rate-limit.c │ ├── journald-rate-limit.h │ ├── journald-server.c │ ├── journald-server.h │ ├── journald-stream.c │ ├── journald-stream.h │ ├── journald-syslog.c │ ├── journald-syslog.h │ ├── journald-wall.c │ ├── journald-wall.h │ ├── journald.c │ ├── journald.conf │ ├── lookup3.c │ ├── lookup3.h │ ├── meson.build │ ├── mmap-cache.c │ ├── mmap-cache.h │ ├── sd-journal.c │ ├── test-audit-type.c │ ├── test-catalog.c │ ├── test-compress-benchmark.c │ ├── test-compress.c │ ├── test-journal-config.c │ ├── test-journal-enum.c │ ├── test-journal-flush.c │ ├── test-journal-init.c │ ├── test-journal-interleaving.c │ ├── test-journal-match.c │ ├── test-journal-send.c │ ├── test-journal-stream.c │ ├── test-journal-syslog.c │ ├── test-journal-verify.c │ ├── test-journal.c │ └── test-mmap-cache.c ├── kernel-install │ ├── 50-depmod.install │ ├── 90-loaderentry.install │ ├── kernel-install │ └── meson.build ├── libsystemd-network │ ├── arp-util.c │ ├── arp-util.h │ ├── dhcp-identifier.c │ ├── dhcp-identifier.h │ ├── dhcp-internal.h │ ├── dhcp-lease-internal.h │ ├── dhcp-network.c │ ├── dhcp-option.c │ ├── dhcp-packet.c │ ├── dhcp-protocol.h │ ├── dhcp-server-internal.h │ ├── dhcp6-internal.h │ ├── dhcp6-lease-internal.h │ ├── dhcp6-network.c │ ├── dhcp6-option.c │ ├── dhcp6-protocol.h │ ├── icmp6-util.c │ ├── icmp6-util.h │ ├── lldp-internal.h │ ├── lldp-neighbor.c │ ├── lldp-neighbor.h │ ├── lldp-network.c │ ├── lldp-network.h │ ├── meson.build │ ├── ndisc-internal.h │ ├── ndisc-router.c │ ├── ndisc-router.h │ ├── network-internal.c │ ├── network-internal.h │ ├── radv-internal.h │ ├── sd-dhcp-client.c │ ├── sd-dhcp-lease.c │ ├── sd-dhcp-server.c │ ├── sd-dhcp6-client.c │ ├── sd-dhcp6-lease.c │ ├── sd-ipv4acd.c │ ├── sd-ipv4ll.c │ ├── sd-lldp.c │ ├── sd-ndisc.c │ ├── sd-radv.c │ ├── test-acd.c │ ├── test-dhcp-client.c │ ├── test-dhcp-option.c │ ├── test-dhcp-server.c │ ├── test-dhcp6-client.c │ ├── test-ipv4ll-manual.c │ ├── test-ipv4ll.c │ ├── test-lldp.c │ ├── test-ndisc-ra.c │ ├── test-ndisc-rs.c │ └── test-sd-dhcp-lease.c ├── libsystemd │ ├── libsystemd.pc.in │ ├── libsystemd.sym │ ├── meson.build │ ├── sd-bus │ │ ├── GVARIANT-SERIALIZATION │ │ ├── bus-common-errors.c │ │ ├── bus-common-errors.h │ │ ├── bus-container.c │ │ ├── bus-container.h │ │ ├── bus-control.c │ │ ├── bus-control.h │ │ ├── bus-convenience.c │ │ ├── bus-creds.c │ │ ├── bus-creds.h │ │ ├── bus-dump.c │ │ ├── bus-dump.h │ │ ├── bus-error.c │ │ ├── bus-error.h │ │ ├── bus-gvariant.c │ │ ├── bus-gvariant.h │ │ ├── bus-internal.c │ │ ├── bus-internal.h │ │ ├── bus-introspect.c │ │ ├── bus-introspect.h │ │ ├── bus-kernel.c │ │ ├── bus-kernel.h │ │ ├── bus-match.c │ │ ├── bus-match.h │ │ ├── bus-message.c │ │ ├── bus-message.h │ │ ├── bus-objects.c │ │ ├── bus-objects.h │ │ ├── bus-protocol.h │ │ ├── bus-signature.c │ │ ├── bus-signature.h │ │ ├── bus-slot.c │ │ ├── bus-slot.h │ │ ├── bus-socket.c │ │ ├── bus-socket.h │ │ ├── bus-track.c │ │ ├── bus-track.h │ │ ├── bus-type.c │ │ ├── bus-type.h │ │ ├── sd-bus.c │ │ ├── test-bus-benchmark.c │ │ ├── test-bus-chat.c │ │ ├── test-bus-cleanup.c │ │ ├── test-bus-creds.c │ │ ├── test-bus-error.c │ │ ├── test-bus-gvariant.c │ │ ├── test-bus-introspect.c │ │ ├── test-bus-marshal.c │ │ ├── test-bus-match.c │ │ ├── test-bus-objects.c │ │ ├── test-bus-server.c │ │ ├── test-bus-signature.c │ │ ├── test-bus-track.c │ │ ├── test-bus-vtable-cc.cc │ │ ├── test-bus-vtable.c │ │ └── test-bus-watch-bind.c │ ├── sd-daemon │ │ └── sd-daemon.c │ ├── sd-device │ │ ├── device-enumerator-private.h │ │ ├── device-enumerator.c │ │ ├── device-internal.h │ │ ├── device-private.c │ │ ├── device-private.h │ │ ├── device-util.h │ │ └── sd-device.c │ ├── sd-event │ │ ├── sd-event.c │ │ └── test-event.c │ ├── sd-hwdb │ │ ├── hwdb-internal.h │ │ ├── hwdb-util.h │ │ └── sd-hwdb.c │ ├── sd-id128 │ │ ├── id128-util.c │ │ ├── id128-util.h │ │ └── sd-id128.c │ ├── sd-login │ │ ├── sd-login.c │ │ └── test-login.c │ ├── sd-netlink │ │ ├── generic-netlink.c │ │ ├── local-addresses.c │ │ ├── local-addresses.h │ │ ├── netlink-internal.h │ │ ├── netlink-message.c │ │ ├── netlink-socket.c │ │ ├── netlink-types.c │ │ ├── netlink-types.h │ │ ├── netlink-util.c │ │ ├── netlink-util.h │ │ ├── rtnl-message.c │ │ ├── sd-netlink.c │ │ ├── test-local-addresses.c │ │ └── test-netlink.c │ ├── sd-network │ │ ├── network-util.c │ │ ├── network-util.h │ │ └── sd-network.c │ ├── sd-path │ │ └── sd-path.c │ ├── sd-resolve │ │ ├── sd-resolve.c │ │ └── test-resolve.c │ └── sd-utf8 │ │ └── sd-utf8.c ├── libudev │ ├── libudev-device-internal.h │ ├── libudev-device-private.c │ ├── libudev-device.c │ ├── libudev-enumerate.c │ ├── libudev-hwdb.c │ ├── libudev-list.c │ ├── libudev-monitor.c │ ├── libudev-private.h │ ├── libudev-queue.c │ ├── libudev-util.c │ ├── libudev.c │ ├── libudev.h │ ├── libudev.pc.in │ ├── libudev.sym │ └── meson.build ├── locale │ ├── kbd-model-map │ ├── keymap-util.c │ ├── keymap-util.h │ ├── language-fallback-map │ ├── localectl.c │ ├── localed.c │ ├── meson.build │ ├── org.freedesktop.locale1.conf │ ├── org.freedesktop.locale1.policy │ ├── org.freedesktop.locale1.service │ └── test-keymap-util.c ├── login │ ├── 70-power-switch.rules │ ├── 70-uaccess.rules │ ├── 71-seat.rules.in │ ├── 73-seat-late.rules.m4 │ ├── inhibit.c │ ├── loginctl.c │ ├── logind-acl.c │ ├── logind-acl.h │ ├── logind-action.c │ ├── logind-action.h │ ├── logind-button.c │ ├── logind-button.h │ ├── logind-core.c │ ├── logind-dbus.c │ ├── logind-device.c │ ├── logind-device.h │ ├── logind-gperf.gperf │ ├── logind-inhibit.c │ ├── logind-inhibit.h │ ├── logind-seat-dbus.c │ ├── logind-seat.c │ ├── logind-seat.h │ ├── logind-session-dbus.c │ ├── logind-session-device.c │ ├── logind-session-device.h │ ├── logind-session.c │ ├── logind-session.h │ ├── logind-user-dbus.c │ ├── logind-user.c │ ├── logind-user.h │ ├── logind-utmp.c │ ├── logind.c │ ├── logind.conf.in │ ├── logind.h │ ├── meson.build │ ├── org.freedesktop.login1.conf │ ├── org.freedesktop.login1.policy │ ├── org.freedesktop.login1.service │ ├── pam_systemd.c │ ├── pam_systemd.sym │ ├── sysfs-show.c │ ├── sysfs-show.h │ ├── systemd-user.m4 │ ├── test-inhibit.c │ ├── test-login-shared.c │ ├── test-login-tables.c │ └── user-runtime-dir.c ├── machine-id-setup │ └── machine-id-setup-main.c ├── machine │ ├── image-dbus.c │ ├── image-dbus.h │ ├── machine-dbus.c │ ├── machine-dbus.h │ ├── machine.c │ ├── machine.h │ ├── machinectl.c │ ├── machined-dbus.c │ ├── machined.c │ ├── machined.h │ ├── meson.build │ ├── operation.c │ ├── operation.h │ ├── org.freedesktop.machine1.conf │ ├── org.freedesktop.machine1.policy │ ├── org.freedesktop.machine1.service │ └── test-machine-tables.c ├── modules-load │ └── modules-load.c ├── mount │ └── mount-tool.c ├── network │ ├── meson.build │ ├── netdev │ │ ├── bond.c │ │ ├── bond.h │ │ ├── bridge.c │ │ ├── bridge.h │ │ ├── dummy.c │ │ ├── dummy.h │ │ ├── geneve.c │ │ ├── geneve.h │ │ ├── ipvlan.c │ │ ├── ipvlan.h │ │ ├── macvlan.c │ │ ├── macvlan.h │ │ ├── netdev-gperf.gperf │ │ ├── netdev.c │ │ ├── netdev.h │ │ ├── netdevsim.c │ │ ├── netdevsim.h │ │ ├── tunnel.c │ │ ├── tunnel.h │ │ ├── tuntap.c │ │ ├── tuntap.h │ │ ├── vcan.c │ │ ├── vcan.h │ │ ├── veth.c │ │ ├── veth.h │ │ ├── vlan.c │ │ ├── vlan.h │ │ ├── vrf.c │ │ ├── vrf.h │ │ ├── vxcan.c │ │ ├── vxcan.h │ │ ├── vxlan.c │ │ ├── vxlan.h │ │ ├── wireguard.c │ │ └── wireguard.h │ ├── networkctl.c │ ├── networkd-address-label.c │ ├── networkd-address-label.h │ ├── networkd-address-pool.c │ ├── networkd-address-pool.h │ ├── networkd-address.c │ ├── networkd-address.h │ ├── networkd-brvlan.c │ ├── networkd-brvlan.h │ ├── networkd-conf.c │ ├── networkd-conf.h │ ├── networkd-dhcp4.c │ ├── networkd-dhcp6.c │ ├── networkd-fdb.c │ ├── networkd-fdb.h │ ├── networkd-gperf.gperf │ ├── networkd-ipv4ll.c │ ├── networkd-ipv6-proxy-ndp.c │ ├── networkd-ipv6-proxy-ndp.h │ ├── networkd-link-bus.c │ ├── networkd-link.c │ ├── networkd-link.h │ ├── networkd-lldp-tx.c │ ├── networkd-lldp-tx.h │ ├── networkd-manager-bus.c │ ├── networkd-manager.c │ ├── networkd-manager.h │ ├── networkd-ndisc.c │ ├── networkd-ndisc.h │ ├── networkd-network-bus.c │ ├── networkd-network-gperf.gperf │ ├── networkd-network.c │ ├── networkd-network.h │ ├── networkd-radv.c │ ├── networkd-radv.h │ ├── networkd-route.c │ ├── networkd-route.h │ ├── networkd-routing-policy-rule.c │ ├── networkd-routing-policy-rule.h │ ├── networkd-util.c │ ├── networkd-util.h │ ├── networkd.c │ ├── org.freedesktop.network1.conf │ ├── org.freedesktop.network1.service │ ├── systemd-networkd.pkla │ ├── systemd-networkd.rules │ ├── test-network-tables.c │ ├── test-network.c │ ├── test-networkd-conf.c │ ├── test-routing-policy-rule.c │ └── wait-online │ │ ├── link.c │ │ ├── link.h │ │ ├── manager.c │ │ ├── manager.h │ │ └── wait-online.c ├── notify │ └── notify.c ├── nspawn │ ├── meson.build │ ├── nspawn-cgroup.c │ ├── nspawn-cgroup.h │ ├── nspawn-def.h │ ├── nspawn-expose-ports.c │ ├── nspawn-expose-ports.h │ ├── nspawn-gperf.gperf │ ├── nspawn-mount.c │ ├── nspawn-mount.h │ ├── nspawn-network.c │ ├── nspawn-network.h │ ├── nspawn-patch-uid.c │ ├── nspawn-patch-uid.h │ ├── nspawn-register.c │ ├── nspawn-register.h │ ├── nspawn-seccomp.c │ ├── nspawn-seccomp.h │ ├── nspawn-settings.c │ ├── nspawn-settings.h │ ├── nspawn-setuid.c │ ├── nspawn-setuid.h │ ├── nspawn-stub-pid1.c │ ├── nspawn-stub-pid1.h │ ├── nspawn.c │ ├── test-nspawn-tables.c │ └── test-patch-uid.c ├── nss-myhostname │ ├── nss-myhostname.c │ └── nss-myhostname.sym ├── nss-mymachines │ ├── nss-mymachines.c │ └── nss-mymachines.sym ├── nss-resolve │ ├── nss-resolve.c │ └── nss-resolve.sym ├── nss-systemd │ ├── nss-systemd.c │ └── nss-systemd.sym ├── partition │ ├── growfs.c │ └── makefs.c ├── path │ └── path.c ├── portable │ ├── meson.build │ ├── org.freedesktop.portable1.conf │ ├── org.freedesktop.portable1.policy │ ├── org.freedesktop.portable1.service │ ├── portable.c │ ├── portable.h │ ├── portablectl.c │ ├── portabled-bus.c │ ├── portabled-bus.h │ ├── portabled-image-bus.c │ ├── portabled-image-bus.h │ ├── portabled-image.c │ ├── portabled-image.h │ ├── portabled-operation.c │ ├── portabled-operation.h │ ├── portabled.c │ ├── portabled.h │ └── profile │ │ ├── default │ │ └── service.conf │ │ ├── nonetwork │ │ └── service.conf │ │ ├── strict │ │ └── service.conf │ │ └── trusted │ │ └── service.conf ├── pstore │ ├── meson.build │ ├── pstore.c │ └── pstore.conf ├── quotacheck │ └── quotacheck.c ├── random-seed │ └── random-seed.c ├── rc-local-generator │ └── rc-local-generator.c ├── remount-fs │ └── remount-fs.c ├── reply-password │ └── reply-password.c ├── resolve │ ├── RFCs │ ├── dns-type.c │ ├── dns-type.h │ ├── dns_type-to-name.awk │ ├── generate-dns_type-gperf.py │ ├── generate-dns_type-list.sed │ ├── meson.build │ ├── org.freedesktop.resolve1.conf │ ├── org.freedesktop.resolve1.policy │ ├── org.freedesktop.resolve1.service │ ├── resolv.conf │ ├── resolvconf-compat.c │ ├── resolvconf-compat.h │ ├── resolvectl.c │ ├── resolvectl.h │ ├── resolved-bus.c │ ├── resolved-bus.h │ ├── resolved-conf.c │ ├── resolved-conf.h │ ├── resolved-def.h │ ├── resolved-dns-answer.c │ ├── resolved-dns-answer.h │ ├── resolved-dns-cache.c │ ├── resolved-dns-cache.h │ ├── resolved-dns-dnssec.c │ ├── resolved-dns-dnssec.h │ ├── resolved-dns-packet.c │ ├── resolved-dns-packet.h │ ├── resolved-dns-query.c │ ├── resolved-dns-query.h │ ├── resolved-dns-question.c │ ├── resolved-dns-question.h │ ├── resolved-dns-rr.c │ ├── resolved-dns-rr.h │ ├── resolved-dns-scope.c │ ├── resolved-dns-scope.h │ ├── resolved-dns-search-domain.c │ ├── resolved-dns-search-domain.h │ ├── resolved-dns-server.c │ ├── resolved-dns-server.h │ ├── resolved-dns-stream.c │ ├── resolved-dns-stream.h │ ├── resolved-dns-stub.c │ ├── resolved-dns-stub.h │ ├── resolved-dns-synthesize.c │ ├── resolved-dns-synthesize.h │ ├── resolved-dns-transaction.c │ ├── resolved-dns-transaction.h │ ├── resolved-dns-trust-anchor.c │ ├── resolved-dns-trust-anchor.h │ ├── resolved-dns-zone.c │ ├── resolved-dns-zone.h │ ├── resolved-dnssd-bus.c │ ├── resolved-dnssd-bus.h │ ├── resolved-dnssd-gperf.gperf │ ├── resolved-dnssd.c │ ├── resolved-dnssd.h │ ├── resolved-etc-hosts.c │ ├── resolved-etc-hosts.h │ ├── resolved-gperf.gperf │ ├── resolved-link-bus.c │ ├── resolved-link-bus.h │ ├── resolved-link.c │ ├── resolved-link.h │ ├── resolved-llmnr.c │ ├── resolved-llmnr.h │ ├── resolved-manager.c │ ├── resolved-manager.h │ ├── resolved-mdns.c │ ├── resolved-mdns.h │ ├── resolved-resolv-conf.c │ ├── resolved-resolv-conf.h │ ├── resolved-socket-graveyard.c │ ├── resolved-socket-graveyard.h │ ├── resolved.c │ ├── resolved.conf.in │ ├── test-dns-packet.c │ ├── test-dnssec-complex.c │ ├── test-dnssec.c │ ├── test-resolve-tables.c │ └── test-resolved-packet.c ├── rfkill │ └── rfkill.c ├── run │ └── run.c ├── shared │ ├── acl-util.c │ ├── acl-util.h │ ├── acpi-fpdt.c │ ├── acpi-fpdt.h │ ├── apparmor-util.c │ ├── apparmor-util.h │ ├── ask-password-api.c │ ├── ask-password-api.h │ ├── base-filesystem.c │ ├── base-filesystem.h │ ├── boot-timestamps.c │ ├── boot-timestamps.h │ ├── bootspec.c │ ├── bootspec.h │ ├── bus-unit-util.c │ ├── bus-unit-util.h │ ├── bus-util.c │ ├── bus-util.h │ ├── bus-wait-for-units.c │ ├── bus-wait-for-units.h │ ├── cgroup-show.c │ ├── cgroup-show.h │ ├── clean-ipc.c │ ├── clean-ipc.h │ ├── condition.c │ ├── condition.h │ ├── conf-parser.c │ ├── conf-parser.h │ ├── dev-setup.c │ ├── dev-setup.h │ ├── dissect-image.c │ ├── dissect-image.h │ ├── dns-domain.c │ ├── dns-domain.h │ ├── dropin.c │ ├── dropin.h │ ├── efivars.c │ ├── efivars.h │ ├── fdset.c │ ├── fdset.h │ ├── firewall-util.c │ ├── firewall-util.h │ ├── fstab-util.c │ ├── fstab-util.h │ ├── generate-syscall-list.py │ ├── generator.c │ ├── generator.h │ ├── gpt.h │ ├── ima-util.c │ ├── ima-util.h │ ├── import-util.c │ ├── import-util.h │ ├── initreq.h │ ├── install-printf.c │ ├── install-printf.h │ ├── install.c │ ├── install.h │ ├── journal-util.c │ ├── journal-util.h │ ├── libshared.sym │ ├── linux-3.13 │ │ └── dm-ioctl.h │ ├── linux │ │ ├── auto_dev-ioctl.h │ │ ├── bpf.h │ │ ├── bpf_common.h │ │ └── libbpf.h │ ├── logs-show.c │ ├── logs-show.h │ ├── loop-util.c │ ├── loop-util.h │ ├── machine-image.c │ ├── machine-image.h │ ├── machine-pool.c │ ├── machine-pool.h │ ├── meson.build │ ├── nsflags.c │ ├── nsflags.h │ ├── output-mode.c │ ├── output-mode.h │ ├── path-lookup.c │ ├── path-lookup.h │ ├── ptyfwd.c │ ├── ptyfwd.h │ ├── resolve-util.c │ ├── resolve-util.h │ ├── seccomp-util.c │ ├── seccomp-util.h │ ├── sleep-config.c │ ├── sleep-config.h │ ├── spawn-ask-password-agent.c │ ├── spawn-ask-password-agent.h │ ├── spawn-polkit-agent.c │ ├── spawn-polkit-agent.h │ ├── specifier.c │ ├── specifier.h │ ├── switch-root.c │ ├── switch-root.h │ ├── syscall-names.text │ ├── sysctl-util.c │ ├── sysctl-util.h │ ├── test-tables.h │ ├── tests.c │ ├── tests.h │ ├── tomoyo-util.c │ ├── tomoyo-util.h │ ├── udev-util.c │ ├── udev-util.h │ ├── uid-range.c │ ├── uid-range.h │ ├── utmp-wtmp.c │ ├── utmp-wtmp.h │ ├── vlan-util.c │ ├── vlan-util.h │ ├── volatile-util.c │ ├── volatile-util.h │ ├── watchdog.c │ ├── watchdog.h │ └── wireguard-netlink.h ├── sleep │ └── sleep.c ├── socket-proxy │ └── socket-proxyd.c ├── stdio-bridge │ └── stdio-bridge.c ├── sulogin-shell │ └── sulogin-shell.c ├── sysctl │ └── sysctl.c ├── system-update-generator │ └── system-update-generator.c ├── systemctl │ ├── systemctl.c │ └── systemd-sysv-install.SKELETON ├── systemd │ ├── _sd-common.h │ ├── meson.build │ ├── sd-bus-protocol.h │ ├── sd-bus-vtable.h │ ├── sd-bus.h │ ├── sd-daemon.h │ ├── sd-device.h │ ├── sd-dhcp-client.h │ ├── sd-dhcp-lease.h │ ├── sd-dhcp-server.h │ ├── sd-dhcp6-client.h │ ├── sd-dhcp6-lease.h │ ├── sd-event.h │ ├── sd-hwdb.h │ ├── sd-id128.h │ ├── sd-ipv4acd.h │ ├── sd-ipv4ll.h │ ├── sd-journal.h │ ├── sd-lldp.h │ ├── sd-login.h │ ├── sd-messages.h │ ├── sd-ndisc.h │ ├── sd-netlink.h │ ├── sd-network.h │ ├── sd-path.h │ ├── sd-radv.h │ ├── sd-resolve.h │ └── sd-utf8.h ├── sysusers │ └── sysusers.c ├── sysv-generator │ └── sysv-generator.c ├── test │ ├── generate-sym-test.py │ ├── meson.build │ ├── test-acl-util.c │ ├── test-af-list.c │ ├── test-alloc-util.c │ ├── test-architecture.c │ ├── test-arphrd-list.c │ ├── test-ask-password-api.c │ ├── test-async.c │ ├── test-barrier.c │ ├── test-bitmap.c │ ├── test-boot-timestamps.c │ ├── test-bpf.c │ ├── test-btrfs.c │ ├── test-bus-util.c │ ├── test-calendarspec.c │ ├── test-cap-list.c │ ├── test-capability.c │ ├── test-cgroup-cpu.c │ ├── test-cgroup-mask.c │ ├── test-cgroup-unit-default.c │ ├── test-cgroup-util.c │ ├── test-cgroup.c │ ├── test-chown-rec.c │ ├── test-clock.c │ ├── test-condition.c │ ├── test-conf-files.c │ ├── test-conf-parser.c │ ├── test-copy.c │ ├── test-cpu-set-util.c │ ├── test-daemon.c │ ├── test-date.c │ ├── test-device-nodes.c │ ├── test-dissect-image.c │ ├── test-dlopen.c │ ├── test-dns-domain.c │ ├── test-ellipsize.c │ ├── test-emergency-action.c │ ├── test-engine.c │ ├── test-env-util.c │ ├── test-escape.c │ ├── test-exec-util.c │ ├── test-execute.c │ ├── test-extract-word.c │ ├── test-fd-util.c │ ├── test-fdset.c │ ├── test-fido-id-desc.c │ ├── test-fileio.c │ ├── test-firewall-util.c │ ├── test-format-table.c │ ├── test-fs-util.c │ ├── test-fstab-util.c │ ├── test-gcrypt-util.c │ ├── test-glob-util.c │ ├── test-hash.c │ ├── test-hashmap-ordered.awk │ ├── test-hashmap-plain.c │ ├── test-hashmap.c │ ├── test-helper.c │ ├── test-helper.h │ ├── test-hexdecoct.c │ ├── test-hostname-util.c │ ├── test-hostname.c │ ├── test-id128.c │ ├── test-in-addr-util.c │ ├── test-install-root.c │ ├── test-install.c │ ├── test-io-util.c │ ├── test-ipcrm.c │ ├── test-job-type.c │ ├── test-journal-importer.c │ ├── test-libudev.c │ ├── test-list.c │ ├── test-locale-util.c │ ├── test-log.c │ ├── test-loopback.c │ ├── test-mount-util.c │ ├── test-namespace.c │ ├── test-netlink-manual.c │ ├── test-ns.c │ ├── test-nss.c │ ├── test-os-util.c │ ├── test-parse-util.c │ ├── test-path-lookup.c │ ├── test-path-util.c │ ├── test-path.c │ ├── test-prioq.c │ ├── test-proc-cmdline.c │ ├── test-process-util.c │ ├── test-procfs-util.c │ ├── test-random-util.c │ ├── test-ratelimit.c │ ├── test-replace-var.c │ ├── test-rlimit-util.c │ ├── test-sched-prio.c │ ├── test-seccomp.c │ ├── test-selinux.c │ ├── test-set.c │ ├── test-sigbus.c │ ├── test-signal-util.c │ ├── test-siphash24.c │ ├── test-sizeof.c │ ├── test-sleep.c │ ├── test-socket-util.c │ ├── test-specifier.c │ ├── test-stat-util.c │ ├── test-strbuf.c │ ├── test-string-util.c │ ├── test-strip-tab-ansi.c │ ├── test-strv.c │ ├── test-strxcpyx.c │ ├── test-systemd-tmpfiles.py │ ├── test-tables.c │ ├── test-terminal-util.c │ ├── test-time-util.c │ ├── test-tmpfiles.c │ ├── test-udev.c │ ├── test-uid-range.c │ ├── test-umount.c │ ├── test-unaligned.c │ ├── test-unit-file.c │ ├── test-unit-name.c │ ├── test-user-util.c │ ├── test-utf8.c │ ├── test-util.c │ ├── test-verbs.c │ ├── test-watch-pid.c │ ├── test-watchdog.c │ ├── test-web-util.c │ ├── test-xattr-util.c │ └── test-xml.c ├── time-wait-sync │ └── time-wait-sync.c ├── timedate │ ├── meson.build │ ├── org.freedesktop.timedate1.conf │ ├── org.freedesktop.timedate1.policy │ ├── org.freedesktop.timedate1.service │ ├── timedatectl.c │ └── timedated.c ├── timesync │ ├── meson.build │ ├── org.freedesktop.timesync1.conf │ ├── org.freedesktop.timesync1.service │ ├── test-timesync.c │ ├── timesyncd-bus.c │ ├── timesyncd-bus.h │ ├── timesyncd-conf.c │ ├── timesyncd-conf.h │ ├── timesyncd-gperf.gperf │ ├── timesyncd-manager.c │ ├── timesyncd-manager.h │ ├── timesyncd-ntp-message.h │ ├── timesyncd-server.c │ ├── timesyncd-server.h │ ├── timesyncd.c │ └── timesyncd.conf.in ├── tmpfiles │ └── tmpfiles.c ├── tty-ask-password-agent │ └── tty-ask-password-agent.c ├── udev │ ├── .vimrc │ ├── ata_id │ │ └── ata_id.c │ ├── cdrom_id │ │ └── cdrom_id.c │ ├── collect │ │ └── collect.c │ ├── fido_id │ │ ├── fido_id.c │ │ ├── fido_id_desc.c │ │ └── fido_id_desc.h │ ├── generate-keyboard-keys-gperf.sh │ ├── generate-keyboard-keys-list.sh │ ├── meson.build │ ├── mtd_probe │ │ ├── mtd_probe.c │ │ ├── mtd_probe.h │ │ └── probe_smartmedia.c │ ├── net │ │ ├── ethtool-util.c │ │ ├── ethtool-util.h │ │ ├── link-config-gperf.gperf │ │ ├── link-config.c │ │ └── link-config.h │ ├── scsi_id │ │ ├── README │ │ ├── scsi.h │ │ ├── scsi_id.c │ │ ├── scsi_id.h │ │ └── scsi_serial.c │ ├── udev-builtin-blkid.c │ ├── udev-builtin-btrfs.c │ ├── udev-builtin-hwdb.c │ ├── udev-builtin-input_id.c │ ├── udev-builtin-keyboard.c │ ├── udev-builtin-kmod.c │ ├── udev-builtin-net_id.c │ ├── udev-builtin-net_setup_link.c │ ├── udev-builtin-path_id.c │ ├── udev-builtin-uaccess.c │ ├── udev-builtin-usb_id.c │ ├── udev-builtin.c │ ├── udev-ctrl.c │ ├── udev-event.c │ ├── udev-node.c │ ├── udev-rules.c │ ├── udev-watch.c │ ├── udev.conf │ ├── udev.h │ ├── udev.pc.in │ ├── udevadm-control.c │ ├── udevadm-hwdb.c │ ├── udevadm-info.c │ ├── udevadm-monitor.c │ ├── udevadm-settle.c │ ├── udevadm-test-builtin.c │ ├── udevadm-test.c │ ├── udevadm-trigger.c │ ├── udevadm-util.c │ ├── udevadm-util.h │ ├── udevadm.c │ ├── udevd.c │ └── v4l_id │ │ └── v4l_id.c ├── update-done │ └── update-done.c ├── update-utmp │ └── update-utmp.c ├── user-sessions │ └── user-sessions.c ├── vconsole │ ├── 90-vconsole.rules.in │ ├── meson.build │ └── vconsole-setup.c ├── veritysetup │ ├── veritysetup-generator.c │ └── veritysetup.c └── volatile-root │ └── volatile-root.c ├── sysctl.d ├── 50-coredump.conf.in ├── 50-default.conf ├── 50-pid-max.conf └── meson.build ├── sysusers.d ├── basic.conf.in ├── meson.build ├── systemd-remote.conf.m4 └── systemd.conf.m4 ├── test ├── .gitignore ├── README.testsuite ├── TEST-01-BASIC │ ├── Makefile │ └── test.sh ├── TEST-02-CRYPTSETUP │ ├── Makefile │ └── test.sh ├── TEST-03-JOBS │ ├── Makefile │ ├── test-jobs.sh │ └── test.sh ├── TEST-04-JOURNAL │ ├── Makefile │ ├── test-journal.sh │ └── test.sh ├── TEST-05-RLIMITS │ ├── Makefile │ ├── test-rlimits.sh │ └── test.sh ├── TEST-06-SELINUX │ ├── Makefile │ ├── systemd_test.if │ ├── systemd_test.te │ ├── test-selinux-checks.sh │ └── test.sh ├── TEST-07-ISSUE-1981 │ ├── Makefile │ ├── test-segfault.sh │ └── test.sh ├── TEST-08-ISSUE-2730 │ ├── Makefile │ └── test.sh ├── TEST-09-ISSUE-2691 │ ├── Makefile │ └── test.sh ├── TEST-10-ISSUE-2467 │ ├── Makefile │ └── test.sh ├── TEST-11-ISSUE-3166 │ ├── Makefile │ └── test.sh ├── TEST-12-ISSUE-3171 │ ├── Makefile │ └── test.sh ├── TEST-13-NSPAWN-SMOKE │ ├── Makefile │ ├── create-busybox-container │ └── test.sh ├── TEST-14-MACHINE-ID │ ├── Makefile │ └── test.sh ├── TEST-15-DROPIN │ ├── Makefile │ ├── test-dropin.sh │ ├── test.sh │ └── testsuite.service ├── TEST-16-EXTEND-TIMEOUT │ ├── Makefile │ ├── assess.sh │ ├── extend_timeout_test_service.sh │ ├── test.sh │ ├── testsuite-fail-runtime.service │ ├── testsuite-fail-start.service │ ├── testsuite-fail-stop.service │ ├── testsuite-success-all.service │ ├── testsuite-success-runtime.service │ ├── testsuite-success-start.service │ ├── testsuite-success-stop.service │ └── testsuite.service ├── TEST-17-UDEV-WANTS │ ├── Makefile │ ├── test.sh │ └── testsuite.sh ├── TEST-18-FAILUREACTION │ ├── Makefile │ ├── test.sh │ └── testsuite.sh ├── TEST-19-DELEGATE │ ├── Makefile │ ├── test.sh │ └── testsuite.sh ├── TEST-20-MAINPIDGAMES │ ├── Makefile │ ├── test.sh │ └── testsuite.sh ├── TEST-21-SYSUSERS │ ├── Makefile │ ├── inline.expected-group │ ├── inline.expected-passwd │ ├── test-1.expected-group │ ├── test-1.expected-passwd │ ├── test-1.input │ ├── test-10.expected-group │ ├── test-10.expected-passwd │ ├── test-10.input │ ├── test-11.expected-group │ ├── test-11.expected-passwd │ ├── test-11.initial-group │ ├── test-11.initial-passwd │ ├── test-11.input │ ├── test-12.expected-group │ ├── test-12.expected-passwd │ ├── test-12.initial-group │ ├── test-12.initial-passwd │ ├── test-12.input │ ├── test-2.expected-group │ ├── test-2.expected-passwd │ ├── test-2.input │ ├── test-3.expected-group │ ├── test-3.expected-passwd │ ├── test-3.input │ ├── test-4.expected-group │ ├── test-4.expected-passwd │ ├── test-4.input │ ├── test-5.expected-group │ ├── test-5.expected-passwd │ ├── test-5.input │ ├── test-6.expected-group │ ├── test-6.expected-passwd │ ├── test-6.input │ ├── test-7.expected-group │ ├── test-7.expected-passwd │ ├── test-7.input │ ├── test-8.expected-group │ ├── test-8.expected-passwd │ ├── test-8.input │ ├── test-9.expected-group │ ├── test-9.expected-passwd │ ├── test-9.input │ ├── test.sh │ ├── unhappy-1.expected-err │ ├── unhappy-1.input │ ├── unhappy-2.expected-err │ └── unhappy-2.input ├── TEST-22-TMPFILES │ ├── Makefile │ ├── run-tmpfiles-tests.sh │ ├── test-01.sh │ ├── test-11.sh │ ├── test.sh │ └── testsuite.service ├── TEST-23-TYPE-EXEC │ ├── Makefile │ ├── test.sh │ └── testsuite.sh ├── TEST-24-UNIT-TESTS │ ├── Makefile │ ├── test.sh │ └── testsuite.sh ├── TEST-27-STDOUTFILE │ ├── Makefile │ ├── test.sh │ └── testsuite.sh ├── TEST-35-LOGIN │ ├── Makefile │ ├── test.sh │ └── testsuite.sh ├── TEST-36-NUMAPOLICY │ ├── Makefile │ ├── test.sh │ └── testsuite.sh ├── TEST-38-FREEZER │ ├── Makefile │ ├── test.sh │ └── testsuite.sh ├── TEST-41-ONESHOT-RESTART │ ├── Makefile │ ├── test.sh │ └── testsuite.sh ├── TEST-47-ISSUE-14566 │ ├── Makefile │ ├── repro.sh │ ├── test.sh │ └── testsuite.sh ├── TEST-51-ISSUE-16115 │ ├── Makefile │ ├── repro-1.service │ ├── repro-2.service │ ├── test.sh │ └── testsuite.sh ├── TEST-53-TIMER │ ├── Makefile │ ├── test.sh │ ├── testsuite.RandomizedDelaySec-reload.sh │ ├── testsuite.restart-trigger.sh │ └── testsuite.sh ├── TEST-60-MOUNT-RATELIMIT │ ├── Makefile │ ├── test.sh │ └── testsuite.sh ├── TEST-63-ISSUE-17433 │ ├── Makefile │ ├── test.sh │ ├── test63.path │ ├── test63.service │ └── testsuite.service ├── TEST-74-AUX-UTILS │ ├── Makefile │ ├── test.sh │ ├── testsuite.pstore.sh │ └── testsuite.sh ├── TEST-81-GENERATORS │ ├── Makefile │ ├── generator-utils.sh │ ├── test.sh │ ├── testsuite.fstab-generator.sh │ └── testsuite.sh ├── a.service ├── b.service ├── basic.target ├── c.service ├── create-sys-script.py ├── d.service ├── daughter.service ├── dml-discard-empty.service ├── dml-discard-set-ml.service ├── dml-discard.slice ├── dml-override-empty.service ├── dml-override.slice ├── dml-passthrough-empty.service ├── dml-passthrough-set-dml.service ├── dml-passthrough-set-ml.service ├── dml-passthrough.slice ├── dml.slice ├── e.service ├── end.service ├── f.service ├── fuzz │ ├── .gitattributes │ ├── fuzz-bus-message │ │ ├── crash-26bba7182dedc8848939931d9fcefcb7922f2e56 │ │ ├── crash-29ed3c202e0ffade3cad42c8bbeb6cc68a21eb8e │ │ ├── crash-32bf69483cbd4f2e6d46c25a2f92a472109aee45 │ │ ├── crash-37449529b1ad867f0c2671fa80aca5d7812a2b70 │ │ ├── crash-4162a61a79e4c5a832ca5232212f75fa560a1f75 │ │ ├── crash-4f0211eb269e28db941961061494bfdbf3345e54 │ │ ├── crash-603dfd98252375ac7dbced53c2ec312671939a36 │ │ ├── crash-b88ad9ecf4aacf4a0caca5b5543953265367f084 │ │ ├── crash-c1b37b4729b42c0c05b23cba4eed5d8102498a1e │ │ ├── crash-d8f3941c74219b4c03532c9b244d5ea539c61af5 │ │ ├── crash-e1b811da5ca494e494b77c6bd8e1c2f2989425c5 │ │ ├── leak-c09c0e2256d43bc5e2d02748c8d8760e7bc25d20 │ │ ├── message1 │ │ └── timeout-08ee8f6446a4064db064e8e0b3d220147f7d0b5b │ ├── fuzz-dhcp-server │ │ ├── discover-existing │ │ ├── discover-new │ │ ├── release │ │ ├── request-existing │ │ ├── request-new │ │ ├── request-reboot │ │ └── request-renew │ ├── fuzz-dns-packet │ │ ├── issue-7888 │ │ └── oss-fuzz-5465 │ ├── fuzz-fido-id-desc │ │ ├── crash0 │ │ ├── crash1 │ │ ├── report0 │ │ └── report1 │ ├── fuzz-journal-remote │ │ ├── crash-5a8f03d4c3a46fcded39527084f437e8e4b54b76 │ │ ├── crash-96dee870ea66d03e89ac321eee28ea63a9b9aa45 │ │ ├── invalid-ts.txt │ │ ├── oss-fuzz-8659 │ │ ├── oss-fuzz-8686 │ │ └── sample.txt │ ├── fuzz-journald-audit │ │ ├── basic │ │ └── crash │ ├── fuzz-journald-kmsg │ │ ├── basic │ │ ├── crash-c6c04d83e73f3d1417bc0afce8fa81b99f955963 │ │ ├── dev-null │ │ ├── leak-ab161e601e82f1ec31d11e2cbae2747834ce9e43 │ │ ├── loopback │ │ └── subsystem-loopback │ ├── fuzz-journald-native-fd │ │ └── basic │ ├── fuzz-journald-stream │ │ └── basic │ ├── fuzz-journald-syslog │ │ ├── github-9795 │ │ ├── github-9820 │ │ ├── github-9827 │ │ └── github-9829 │ ├── fuzz-ndisc-rs │ │ ├── timeout-2815b773c712fa33bea62f541dfa3017c64ea2f1 │ │ └── timeout-61fff7fd1e5dcc07e1b656baab29065ce634ad5b │ ├── fuzz-unit-file │ │ ├── dev-mapper-fedora_krowka\x2dswap.swap │ │ ├── directives.service │ │ ├── empty.scope │ │ ├── machine.slice │ │ ├── oss-fuzz-10007 │ │ ├── oss-fuzz-6884 │ │ ├── oss-fuzz-6885 │ │ ├── oss-fuzz-6886 │ │ ├── oss-fuzz-6892 │ │ ├── oss-fuzz-6897 │ │ ├── oss-fuzz-6897-evverx │ │ ├── oss-fuzz-6908 │ │ ├── oss-fuzz-6917 │ │ ├── oss-fuzz-6977 │ │ ├── oss-fuzz-6977-unminimized │ │ ├── oss-fuzz-7004 │ │ ├── oss-fuzz-8064 │ │ ├── oss-fuzz-8827 │ │ ├── proc-sys-fs-binfmt_misc.automount │ │ ├── syslog.socket │ │ ├── systemd-ask-password-console.path │ │ ├── systemd-machined.service │ │ ├── systemd-resolved.service │ │ ├── systemd-tmpfiles-clean.timer │ │ ├── timers.target │ │ └── var-lib-machines.mount │ └── meson.build ├── g.service ├── grandchild.service ├── h.service ├── hello-after-sleep.target ├── hello.service ├── hwdb-test.sh ├── hwdb │ └── 10-bad.hwdb ├── journal-data │ ├── journal-1.txt │ └── journal-2.txt ├── loopy.service ├── loopy.service.d │ └── compat.conf ├── loopy2.service ├── loopy3.service ├── loopy4.service ├── meson.build ├── mocks │ └── fsck ├── networkd-test.py ├── parent-deep.slice ├── parent.slice ├── rule-syntax-check.py ├── run-integration-tests.sh ├── sched_idle_bad.service ├── sched_idle_ok.service ├── sched_rr_bad.service ├── sched_rr_change.service ├── sched_rr_ok.service ├── shutdown.target ├── sleep.service ├── sockets.target ├── son.service ├── splash.bmp ├── sys-script.py ├── sysinit.target ├── sysv-generator-test.py ├── test-efi-create-disk.sh ├── test-exec-deserialization.py ├── test-execute │ ├── exec-ambientcapabilities-merge-nfsnobody.service │ ├── exec-ambientcapabilities-merge-nobody.service │ ├── exec-ambientcapabilities-merge.service │ ├── exec-ambientcapabilities-nfsnobody.service │ ├── exec-ambientcapabilities-nobody.service │ ├── exec-ambientcapabilities.service │ ├── exec-basic.service │ ├── exec-bindpaths.service │ ├── exec-capabilityboundingset-invert.service │ ├── exec-capabilityboundingset-merge.service │ ├── exec-capabilityboundingset-reset.service │ ├── exec-capabilityboundingset-simple.service │ ├── exec-condition-failed.service │ ├── exec-condition-skip.service │ ├── exec-cpuaffinity1.service │ ├── exec-cpuaffinity2.service │ ├── exec-cpuaffinity3.service │ ├── exec-dynamicuser-fixeduser-one-supplementarygroup.service │ ├── exec-dynamicuser-fixeduser.service │ ├── exec-dynamicuser-statedir-migrate-step1.service │ ├── exec-dynamicuser-statedir-migrate-step2.service │ ├── exec-dynamicuser-statedir.service │ ├── exec-dynamicuser-supplementarygroups.service │ ├── exec-environment-empty.service │ ├── exec-environment-multiple.service │ ├── exec-environment.service │ ├── exec-environmentfile.service │ ├── exec-group-nfsnobody.service │ ├── exec-group-nobody.service │ ├── exec-group-nogroup.service │ ├── exec-group.service │ ├── exec-ignoresigpipe-no.service │ ├── exec-ignoresigpipe-yes.service │ ├── exec-inaccessiblepaths-mount-propagation.service │ ├── exec-inaccessiblepaths-proc.service │ ├── exec-ioschedulingclass-best-effort.service │ ├── exec-ioschedulingclass-idle.service │ ├── exec-ioschedulingclass-none.service │ ├── exec-ioschedulingclass-realtime.service │ ├── exec-oomscoreadjust-negative.service │ ├── exec-oomscoreadjust-positive.service │ ├── exec-passenvironment-absent.service │ ├── exec-passenvironment-empty.service │ ├── exec-passenvironment-repeated.service │ ├── exec-passenvironment.service │ ├── exec-personality-aarch64.service │ ├── exec-personality-ppc64.service │ ├── exec-personality-ppc64le.service │ ├── exec-personality-s390.service │ ├── exec-personality-x86-64.service │ ├── exec-personality-x86.service │ ├── exec-privatedevices-disabled-by-prefix.service │ ├── exec-privatedevices-no-capability-mknod.service │ ├── exec-privatedevices-no-capability-sys-rawio.service │ ├── exec-privatedevices-no.service │ ├── exec-privatedevices-yes-capability-mknod.service │ ├── exec-privatedevices-yes-capability-sys-rawio.service │ ├── exec-privatedevices-yes.service │ ├── exec-privatenetwork-yes.service │ ├── exec-privatetmp-no.service │ ├── exec-privatetmp-yes.service │ ├── exec-protectkernelmodules-no-capabilities.service │ ├── exec-protectkernelmodules-yes-capabilities.service │ ├── exec-protectkernelmodules-yes-mount-propagation.service │ ├── exec-readonlypaths-mount-propagation.service │ ├── exec-readonlypaths-simple.service │ ├── exec-readonlypaths-with-bindpaths.service │ ├── exec-readonlypaths.service │ ├── exec-readwritepaths-mount-propagation.service │ ├── exec-restrictnamespaces-merge-all.service │ ├── exec-restrictnamespaces-merge-and.service │ ├── exec-restrictnamespaces-merge-or.service │ ├── exec-restrictnamespaces-mnt-blacklist.service │ ├── exec-restrictnamespaces-mnt.service │ ├── exec-restrictnamespaces-no.service │ ├── exec-restrictnamespaces-yes.service │ ├── exec-runtimedirectory-mode.service │ ├── exec-runtimedirectory-owner-nfsnobody.service │ ├── exec-runtimedirectory-owner-nobody.service │ ├── exec-runtimedirectory-owner-nogroup.service │ ├── exec-runtimedirectory-owner.service │ ├── exec-runtimedirectory.service │ ├── exec-specifier-interpolation.service │ ├── exec-specifier.service │ ├── exec-specifier@.service │ ├── exec-standardinput-data.service │ ├── exec-standardinput-file.service │ ├── exec-standardoutput-append.service │ ├── exec-standardoutput-file.service │ ├── exec-supplementarygroups-multiple-groups-default-group-user.service │ ├── exec-supplementarygroups-multiple-groups-withgid.service │ ├── exec-supplementarygroups-multiple-groups-withuid.service │ ├── exec-supplementarygroups-single-group-user.service │ ├── exec-supplementarygroups-single-group.service │ ├── exec-supplementarygroups.service │ ├── exec-systemcallerrornumber-name.service │ ├── exec-systemcallerrornumber-number.service │ ├── exec-systemcallfilter-failing.service │ ├── exec-systemcallfilter-failing2.service │ ├── exec-systemcallfilter-not-failing.service │ ├── exec-systemcallfilter-not-failing2.service │ ├── exec-systemcallfilter-system-user-nfsnobody.service │ ├── exec-systemcallfilter-system-user-nobody.service │ ├── exec-systemcallfilter-system-user.service │ ├── exec-systemcallfilter-with-errno-name.service │ ├── exec-systemcallfilter-with-errno-number.service │ ├── exec-temporaryfilesystem-options.service │ ├── exec-temporaryfilesystem-ro.service │ ├── exec-temporaryfilesystem-rw.service │ ├── exec-temporaryfilesystem-usr.service │ ├── exec-umask-0177.service │ ├── exec-umask-default.service │ ├── exec-unsetenvironment.service │ ├── exec-user-nfsnobody.service │ ├── exec-user-nobody.service │ ├── exec-user.service │ ├── exec-workingdirectory-trailing-dot.service │ └── exec-workingdirectory.service ├── test-functions ├── test-path │ ├── basic.target │ ├── path-changed.path │ ├── path-changed.service │ ├── path-directorynotempty.path │ ├── path-directorynotempty.service │ ├── path-exists.path │ ├── path-exists.service │ ├── path-existsglob.path │ ├── path-existsglob.service │ ├── path-makedirectory.path │ ├── path-makedirectory.service │ ├── path-modified.path │ ├── path-modified.service │ ├── path-mycustomunit.service │ ├── path-service.service │ ├── path-unit.path │ ├── paths.target │ └── sysinit.target ├── test-resolve │ ├── _443._tcp.fedoraproject.org.pkts │ ├── _openpgpkey.fedoraproject.org.pkts │ ├── fake-caa.pkts │ ├── fedoraproject.org.pkts │ ├── gandi.net.pkts │ ├── google.com.pkts │ ├── kyhwana.org.pkts │ ├── root.pkts │ ├── sw1a1aa-sw1a2aa-sw1a2ab-sw1a2ac.find.me.uk.pkts │ ├── teamits.com.pkts │ └── zbyszek@fedoraproject.org.pkts ├── test-umount │ ├── empty.mountinfo │ ├── example.swaps │ ├── garbled.mountinfo │ └── rhbug-1554943.mountinfo ├── testsuite.target ├── timers.target ├── udev-test.pl ├── unit-.service.d │ └── 10-override.conf ├── unit-with-.service.d │ └── 20-override.conf ├── unit-with-multiple-.service.d │ ├── 20-override.conf │ └── 30-override.conf ├── unit-with-multiple-dashes.service ├── unit-with-multiple-dashes.service.d │ └── 10-override.conf └── unstoppable.service ├── tmpfiles.d ├── etc.conf.m4 ├── home.conf ├── journal-nocow.conf ├── legacy.conf ├── meson.build ├── portables.conf ├── systemd-nologin.conf ├── systemd-nspawn.conf ├── systemd-pstore.conf ├── systemd.conf.m4 ├── tmp.conf ├── var.conf.m4 └── x11.conf ├── tools ├── add-git-hook.sh ├── catalog-report.py ├── check-includes.pl ├── coverity.sh ├── find-build-dir.sh ├── find-double-newline.sh ├── find-tabs.sh ├── gdb-sd_dump_hashmaps.py ├── make-directive-index.py ├── make-man-index.py ├── make-man-rules.py ├── meson-apply-m4.sh ├── meson-build.sh ├── meson-check-api-docs.sh ├── meson-check-compilation.sh ├── meson-check-help.sh ├── meson-git-contrib.sh ├── meson-hwdb-update.sh ├── meson-link-test.c ├── meson-make-symlink.sh ├── oss-fuzz.sh ├── syscall-names-update.sh └── xml_helper.py ├── travis-ci ├── .dockerignore ├── Dockerfile ├── requirements.txt ├── scripts │ └── build-docker-image.sh └── tools │ └── get-coverity.sh ├── units ├── basic.target ├── bluetooth.target ├── boot-complete.target ├── busnames.target ├── console-getty.service.m4 ├── container-getty@.service.m4 ├── cryptsetup-pre.target ├── cryptsetup.target ├── debug-shell.service.in ├── dev-hugepages.mount ├── dev-mqueue.mount ├── emergency.service.in ├── emergency.target ├── exit.target ├── final.target ├── getty-pre.target ├── getty.target ├── getty@.service.m4 ├── graphical.target ├── halt-local.service.in ├── halt.target ├── hibernate.target ├── hybrid-sleep.target ├── initrd-cleanup.service.in ├── initrd-fs.target ├── initrd-parse-etc.service.in ├── initrd-root-device.target ├── initrd-root-fs.target ├── initrd-switch-root.service.in ├── initrd-switch-root.target ├── initrd-udevadm-cleanup-db.service.in ├── initrd.target ├── kexec.target ├── kmod-static-nodes.service.in ├── ldconfig.service ├── local-fs-pre.target ├── local-fs.target ├── machine.slice ├── machines.target ├── meson-add-wants.sh ├── meson.build ├── multi-user.target ├── network-online.target ├── network-pre.target ├── network.target ├── nss-lookup.target ├── nss-user-lookup.target ├── paths.target ├── poweroff.target ├── printer.target ├── proc-sys-fs-binfmt_misc.automount ├── proc-sys-fs-binfmt_misc.mount ├── quotaon.service.in ├── rc-local.service.in ├── reboot.target ├── remote-cryptsetup.target ├── remote-fs-pre.target ├── remote-fs.target ├── rescue.service.in ├── rescue.target ├── rpcbind.target ├── serial-getty@.service.m4 ├── shutdown.target ├── sigpwr.target ├── sleep.target ├── slices.target ├── smartcard.target ├── sockets.target ├── sound.target ├── suspend-then-hibernate.target ├── suspend.target ├── swap.target ├── sys-fs-fuse-connections.mount ├── sys-kernel-config.mount ├── sys-kernel-debug.mount ├── sysinit.target ├── syslog.socket ├── system-update-cleanup.service ├── system-update-pre.target ├── system-update.target ├── systemd-ask-password-console.path ├── systemd-ask-password-console.service.in ├── systemd-ask-password-wall.path ├── systemd-ask-password-wall.service.in ├── systemd-backlight@.service.in ├── systemd-binfmt.service.in ├── systemd-coredump.socket ├── systemd-coredump@.service.in ├── systemd-exit.service ├── systemd-firstboot.service.in ├── systemd-fsck-root.service.in ├── systemd-fsck@.service.in ├── systemd-halt.service.in ├── systemd-hibernate-resume@.service.in ├── systemd-hibernate.service.in ├── systemd-hostnamed.service.in ├── systemd-hwdb-update.service.in ├── systemd-hybrid-sleep.service.in ├── systemd-importd.service.in ├── systemd-initctl.service.in ├── systemd-initctl.socket ├── systemd-journal-catalog-update.service.in ├── systemd-journal-flush.service.in ├── systemd-journal-gatewayd.service.in ├── systemd-journal-gatewayd.socket ├── systemd-journal-remote.service.in ├── systemd-journal-remote.socket ├── systemd-journal-upload.service.in ├── systemd-journald-audit.socket ├── systemd-journald-dev-log.socket ├── systemd-journald.service.in ├── systemd-journald.socket ├── systemd-kexec.service.in ├── systemd-localed.service.in ├── systemd-logind.service.in ├── systemd-machine-id-commit.service.in ├── systemd-machined.service.in ├── systemd-modules-load.service.in ├── systemd-networkd-wait-online.service.in ├── systemd-networkd.service.in ├── systemd-networkd.socket ├── systemd-nspawn@.service.in ├── systemd-portabled.service.in ├── systemd-poweroff.service ├── systemd-pstore.service.in ├── systemd-quotacheck.service.in ├── systemd-random-seed.service.in ├── systemd-reboot.service ├── systemd-remount-fs.service.in ├── systemd-resolved.service.in ├── systemd-rfkill.service.in ├── systemd-rfkill.socket ├── systemd-suspend-then-hibernate.service.in ├── systemd-suspend.service.in ├── systemd-sysctl.service.in ├── systemd-sysusers.service.in ├── systemd-time-wait-sync.service.in ├── systemd-timedated.service.in ├── systemd-timesyncd.service.in ├── systemd-tmpfiles-clean.service.in ├── systemd-tmpfiles-clean.timer ├── systemd-tmpfiles-setup-dev.service.in ├── systemd-tmpfiles-setup.service.in ├── systemd-udev-settle.service.in ├── systemd-udev-trigger.service.in ├── systemd-udevd-control.socket ├── systemd-udevd-kernel.socket ├── systemd-udevd.service.in ├── systemd-update-done.service.in ├── systemd-update-utmp-runlevel.service.in ├── systemd-update-utmp.service.in ├── systemd-user-sessions.service.in ├── systemd-vconsole-setup.service.in ├── systemd-volatile-root.service.in ├── time-sync.target ├── timers.target ├── tmp.mount ├── umount.target ├── user-.slice.d │ └── 10-defaults.conf ├── user-runtime-dir@.service.in ├── user.slice ├── user │ ├── basic.target │ ├── bluetooth.target │ ├── busnames.target │ ├── default.target │ ├── exit.target │ ├── graphical-session-pre.target │ ├── graphical-session.target │ ├── meson.build │ ├── paths.target │ ├── printer.target │ ├── shutdown.target │ ├── smartcard.target │ ├── sockets.target │ ├── sound.target │ ├── systemd-exit.service │ ├── systemd-tmpfiles-clean.service.in │ ├── systemd-tmpfiles-clean.timer │ ├── systemd-tmpfiles-setup.service.in │ └── timers.target ├── user@.service.in └── var-lib-machines.mount ├── xorg └── 50-systemd-user.sh └── zanata.xml /.dir-locals.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/.dir-locals.el -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/RELEASE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/.github/RELEASE.md -------------------------------------------------------------------------------- /.github/auto-merge.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/.github/auto-merge.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/.gitignore -------------------------------------------------------------------------------- /.mailmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/.mailmap -------------------------------------------------------------------------------- /.mkosi/mkosi.arch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/.mkosi/mkosi.arch -------------------------------------------------------------------------------- /.mkosi/mkosi.debian: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/.mkosi/mkosi.debian -------------------------------------------------------------------------------- /.mkosi/mkosi.fedora: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/.mkosi/mkosi.fedora -------------------------------------------------------------------------------- /.mkosi/mkosi.ubuntu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/.mkosi/mkosi.ubuntu -------------------------------------------------------------------------------- /.vimrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/.vimrc -------------------------------------------------------------------------------- /.ycm_extra_conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/.ycm_extra_conf.py -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.GPL2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/LICENSE.GPL2 -------------------------------------------------------------------------------- /LICENSE.LGPL2.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/LICENSE.LGPL2.1 -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/Makefile -------------------------------------------------------------------------------- /NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/NEWS -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/README -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/README.md -------------------------------------------------------------------------------- /TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/TODO -------------------------------------------------------------------------------- /catalog/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/catalog/meson.build -------------------------------------------------------------------------------- /coccinelle/dup-fcntl.cocci: -------------------------------------------------------------------------------- 1 | @@ 2 | expression fd; 3 | @@ 4 | - dup(fd) 5 | + fcntl(fd, F_DUPFD, 3) 6 | -------------------------------------------------------------------------------- /coccinelle/enotsup.cocci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/coccinelle/enotsup.cocci -------------------------------------------------------------------------------- /coccinelle/errno.cocci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/coccinelle/errno.cocci -------------------------------------------------------------------------------- /coccinelle/exit-0.cocci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/coccinelle/exit-0.cocci -------------------------------------------------------------------------------- /coccinelle/htonl.cocci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/coccinelle/htonl.cocci -------------------------------------------------------------------------------- /coccinelle/in_set.cocci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/coccinelle/in_set.cocci -------------------------------------------------------------------------------- /coccinelle/isempty.cocci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/coccinelle/isempty.cocci -------------------------------------------------------------------------------- /coccinelle/memzero.cocci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/coccinelle/memzero.cocci -------------------------------------------------------------------------------- /coccinelle/mfree.cocci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/coccinelle/mfree.cocci -------------------------------------------------------------------------------- /coccinelle/strjoin.cocci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/coccinelle/strjoin.cocci -------------------------------------------------------------------------------- /coccinelle/take-fd.cocci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/coccinelle/take-fd.cocci -------------------------------------------------------------------------------- /configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/configure -------------------------------------------------------------------------------- /doc/CGROUP_DELEGATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/doc/CGROUP_DELEGATION.md -------------------------------------------------------------------------------- /doc/CODE_QUALITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/doc/CODE_QUALITY.md -------------------------------------------------------------------------------- /doc/CODING_STYLE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/doc/CODING_STYLE -------------------------------------------------------------------------------- /doc/DISTRO_PORTING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/doc/DISTRO_PORTING -------------------------------------------------------------------------------- /doc/ENVIRONMENT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/doc/ENVIRONMENT.md -------------------------------------------------------------------------------- /doc/HACKING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/doc/HACKING -------------------------------------------------------------------------------- /doc/PORTABLE_SERVICES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/doc/PORTABLE_SERVICES.md -------------------------------------------------------------------------------- /doc/TRANSLATORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/doc/TRANSLATORS -------------------------------------------------------------------------------- /doc/UIDS-GIDS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/doc/UIDS-GIDS.md -------------------------------------------------------------------------------- /doc/sysvinit/README.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/doc/sysvinit/README.in -------------------------------------------------------------------------------- /doc/sysvinit/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/doc/sysvinit/meson.build -------------------------------------------------------------------------------- /doc/var-log/README.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/doc/var-log/README.in -------------------------------------------------------------------------------- /doc/var-log/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/doc/var-log/meson.build -------------------------------------------------------------------------------- /factory/etc/pam.d/other: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/factory/etc/pam.d/other -------------------------------------------------------------------------------- /hwdb/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/hwdb/.gitattributes -------------------------------------------------------------------------------- /hwdb/.gitignore: -------------------------------------------------------------------------------- 1 | /20-acpi-vendor.hwdb.base 2 | -------------------------------------------------------------------------------- /hwdb/20-OUI.hwdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/hwdb/20-OUI.hwdb -------------------------------------------------------------------------------- /hwdb/20-acpi-vendor.hwdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/hwdb/20-acpi-vendor.hwdb -------------------------------------------------------------------------------- /hwdb/20-dmi-id.hwdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/hwdb/20-dmi-id.hwdb -------------------------------------------------------------------------------- /hwdb/20-pci-classes.hwdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/hwdb/20-pci-classes.hwdb -------------------------------------------------------------------------------- /hwdb/20-usb-classes.hwdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/hwdb/20-usb-classes.hwdb -------------------------------------------------------------------------------- /hwdb/20-vmbus-class.hwdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/hwdb/20-vmbus-class.hwdb -------------------------------------------------------------------------------- /hwdb/60-autosuspend.hwdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/hwdb/60-autosuspend.hwdb -------------------------------------------------------------------------------- /hwdb/60-evdev.hwdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/hwdb/60-evdev.hwdb -------------------------------------------------------------------------------- /hwdb/60-input-id.hwdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/hwdb/60-input-id.hwdb -------------------------------------------------------------------------------- /hwdb/60-keyboard.hwdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/hwdb/60-keyboard.hwdb -------------------------------------------------------------------------------- /hwdb/60-seat.hwdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/hwdb/60-seat.hwdb -------------------------------------------------------------------------------- /hwdb/60-sensor.hwdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/hwdb/60-sensor.hwdb -------------------------------------------------------------------------------- /hwdb/70-joystick.hwdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/hwdb/70-joystick.hwdb -------------------------------------------------------------------------------- /hwdb/70-mouse.hwdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/hwdb/70-mouse.hwdb -------------------------------------------------------------------------------- /hwdb/70-touchpad.hwdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/hwdb/70-touchpad.hwdb -------------------------------------------------------------------------------- /hwdb/acpi-update.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/hwdb/acpi-update.py -------------------------------------------------------------------------------- /hwdb/ids_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/hwdb/ids_parser.py -------------------------------------------------------------------------------- /hwdb/ma-large.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/hwdb/ma-large.txt -------------------------------------------------------------------------------- /hwdb/ma-medium.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/hwdb/ma-medium.txt -------------------------------------------------------------------------------- /hwdb/ma-small.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/hwdb/ma-small.txt -------------------------------------------------------------------------------- /hwdb/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/hwdb/meson.build -------------------------------------------------------------------------------- /hwdb/parse_hwdb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/hwdb/parse_hwdb.py -------------------------------------------------------------------------------- /hwdb/pci.ids: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/hwdb/pci.ids -------------------------------------------------------------------------------- /hwdb/sdio.ids: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/hwdb/sdio.ids -------------------------------------------------------------------------------- /hwdb/usb.ids: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/hwdb/usb.ids -------------------------------------------------------------------------------- /man/.dir-locals.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/man/.dir-locals.el -------------------------------------------------------------------------------- /man/50-xdg-data-dirs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/man/50-xdg-data-dirs.sh -------------------------------------------------------------------------------- /man/90-rearrange-path.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/man/90-rearrange-path.py -------------------------------------------------------------------------------- /man/binfmt.d.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/man/binfmt.d.xml -------------------------------------------------------------------------------- /man/bootctl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/man/bootctl.xml -------------------------------------------------------------------------------- /man/bootup.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/man/bootup.xml -------------------------------------------------------------------------------- /man/busctl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/man/busctl.xml -------------------------------------------------------------------------------- /man/coredump.conf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/man/coredump.conf.xml -------------------------------------------------------------------------------- /man/coredumpctl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/man/coredumpctl.xml -------------------------------------------------------------------------------- /man/crypttab.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/man/crypttab.xml -------------------------------------------------------------------------------- /man/custom-html.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/man/custom-html.xsl -------------------------------------------------------------------------------- /man/custom-man.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/man/custom-man.xsl -------------------------------------------------------------------------------- /man/daemon.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/man/daemon.xml -------------------------------------------------------------------------------- /man/environment.d.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/man/environment.d.xml -------------------------------------------------------------------------------- /man/file-hierarchy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/man/file-hierarchy.xml -------------------------------------------------------------------------------- /man/glib-event-glue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/man/glib-event-glue.c -------------------------------------------------------------------------------- /man/halt.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/man/halt.xml -------------------------------------------------------------------------------- /man/hostname.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/man/hostname.xml -------------------------------------------------------------------------------- /man/hostnamectl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/man/hostnamectl.xml -------------------------------------------------------------------------------- /man/hwdb.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/man/hwdb.xml -------------------------------------------------------------------------------- /man/inotify-watch-tmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/man/inotify-watch-tmp.c -------------------------------------------------------------------------------- /man/journalctl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/man/journalctl.xml -------------------------------------------------------------------------------- /man/journald.conf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/man/journald.conf.xml -------------------------------------------------------------------------------- /man/kernel-install.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/man/kernel-install.xml -------------------------------------------------------------------------------- /man/less-variables.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/man/less-variables.xml -------------------------------------------------------------------------------- /man/libudev.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/man/libudev.xml -------------------------------------------------------------------------------- /man/loader.conf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/man/loader.conf.xml -------------------------------------------------------------------------------- /man/locale.conf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/man/locale.conf.xml -------------------------------------------------------------------------------- /man/localectl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/man/localectl.xml -------------------------------------------------------------------------------- /man/localtime.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/man/localtime.xml -------------------------------------------------------------------------------- /man/loginctl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/man/loginctl.xml -------------------------------------------------------------------------------- /man/logind.conf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/man/logind.conf.xml -------------------------------------------------------------------------------- /man/machine-id.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/man/machine-id.xml -------------------------------------------------------------------------------- /man/machine-info.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/man/machine-info.xml -------------------------------------------------------------------------------- /man/machinectl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/man/machinectl.xml -------------------------------------------------------------------------------- /man/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/man/meson.build -------------------------------------------------------------------------------- /man/modules-load.d.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/man/modules-load.d.xml -------------------------------------------------------------------------------- /man/networkctl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/man/networkctl.xml -------------------------------------------------------------------------------- /man/networkd.conf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/man/networkd.conf.xml -------------------------------------------------------------------------------- /man/nss-myhostname.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/man/nss-myhostname.xml -------------------------------------------------------------------------------- /man/nss-mymachines.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/man/nss-mymachines.xml -------------------------------------------------------------------------------- /man/nss-resolve.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/man/nss-resolve.xml -------------------------------------------------------------------------------- /man/nss-systemd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/man/nss-systemd.xml -------------------------------------------------------------------------------- /man/os-release.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/man/os-release.xml -------------------------------------------------------------------------------- /man/pam_systemd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/man/pam_systemd.xml -------------------------------------------------------------------------------- /man/portablectl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/man/portablectl.xml -------------------------------------------------------------------------------- /man/pstore.conf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/man/pstore.conf.xml -------------------------------------------------------------------------------- /man/resolvectl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/man/resolvectl.xml -------------------------------------------------------------------------------- /man/resolved.conf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/man/resolved.conf.xml -------------------------------------------------------------------------------- /man/rules/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/man/rules/meson.build -------------------------------------------------------------------------------- /man/runlevel.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/man/runlevel.xml -------------------------------------------------------------------------------- /man/sd-bus-errors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/man/sd-bus-errors.xml -------------------------------------------------------------------------------- /man/sd-bus.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/man/sd-bus.xml -------------------------------------------------------------------------------- /man/sd-daemon.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/man/sd-daemon.xml -------------------------------------------------------------------------------- /man/sd-event.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/man/sd-event.xml -------------------------------------------------------------------------------- /man/sd-id128.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/man/sd-id128.xml -------------------------------------------------------------------------------- /man/sd-journal.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/man/sd-journal.xml -------------------------------------------------------------------------------- /man/sd-login.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/man/sd-login.xml -------------------------------------------------------------------------------- /man/sd_booted.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/man/sd_booted.xml -------------------------------------------------------------------------------- /man/sd_bus_add_match.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/man/sd_bus_add_match.xml -------------------------------------------------------------------------------- /man/sd_bus_default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/man/sd_bus_default.xml -------------------------------------------------------------------------------- /man/sd_bus_error.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/man/sd_bus_error.xml -------------------------------------------------------------------------------- /man/sd_bus_get_fd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/man/sd_bus_get_fd.xml -------------------------------------------------------------------------------- /man/sd_bus_is_open.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/man/sd_bus_is_open.xml -------------------------------------------------------------------------------- /man/sd_bus_new.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/man/sd_bus_new.xml -------------------------------------------------------------------------------- /man/sd_bus_process.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/man/sd_bus_process.xml -------------------------------------------------------------------------------- /man/sd_bus_track_new.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/man/sd_bus_track_new.xml -------------------------------------------------------------------------------- /man/sd_event_add_io.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/man/sd_event_add_io.xml -------------------------------------------------------------------------------- /man/sd_event_exit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/man/sd_event_exit.xml -------------------------------------------------------------------------------- /man/sd_event_get_fd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/man/sd_event_get_fd.xml -------------------------------------------------------------------------------- /man/sd_event_new.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/man/sd_event_new.xml -------------------------------------------------------------------------------- /man/sd_event_now.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/man/sd_event_now.xml -------------------------------------------------------------------------------- /man/sd_event_run.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/man/sd_event_run.xml -------------------------------------------------------------------------------- /man/sd_event_wait.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/man/sd_event_wait.xml -------------------------------------------------------------------------------- /man/sd_get_seats.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/man/sd_get_seats.xml -------------------------------------------------------------------------------- /man/sd_is_fifo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/man/sd_is_fifo.xml -------------------------------------------------------------------------------- /man/sd_journal_next.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/man/sd_journal_next.xml -------------------------------------------------------------------------------- /man/sd_journal_open.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/man/sd_journal_open.xml -------------------------------------------------------------------------------- /man/sd_journal_print.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/man/sd_journal_print.xml -------------------------------------------------------------------------------- /man/sd_listen_fds.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/man/sd_listen_fds.xml -------------------------------------------------------------------------------- /man/sd_notify.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/man/sd_notify.xml -------------------------------------------------------------------------------- /man/sd_uid_get_state.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/man/sd_uid_get_state.xml -------------------------------------------------------------------------------- /man/shutdown.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/man/shutdown.xml -------------------------------------------------------------------------------- /man/standard-conf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/man/standard-conf.xml -------------------------------------------------------------------------------- /man/standard-options.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/man/standard-options.xml -------------------------------------------------------------------------------- /man/sysctl.d.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/man/sysctl.d.xml -------------------------------------------------------------------------------- /man/systemctl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/man/systemctl.xml -------------------------------------------------------------------------------- /man/systemd-analyze.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/man/systemd-analyze.xml -------------------------------------------------------------------------------- /man/systemd-boot.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/man/systemd-boot.xml -------------------------------------------------------------------------------- /man/systemd-cat.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/man/systemd-cat.xml -------------------------------------------------------------------------------- /man/systemd-cgls.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/man/systemd-cgls.xml -------------------------------------------------------------------------------- /man/systemd-cgtop.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/man/systemd-cgtop.xml -------------------------------------------------------------------------------- /man/systemd-coredump.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/man/systemd-coredump.xml -------------------------------------------------------------------------------- /man/systemd-delta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/man/systemd-delta.xml -------------------------------------------------------------------------------- /man/systemd-escape.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/man/systemd-escape.xml -------------------------------------------------------------------------------- /man/systemd-hwdb.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/man/systemd-hwdb.xml -------------------------------------------------------------------------------- /man/systemd-inhibit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/man/systemd-inhibit.xml -------------------------------------------------------------------------------- /man/systemd-mount.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/man/systemd-mount.xml -------------------------------------------------------------------------------- /man/systemd-notify.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/man/systemd-notify.xml -------------------------------------------------------------------------------- /man/systemd-nspawn.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/man/systemd-nspawn.xml -------------------------------------------------------------------------------- /man/systemd-path.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/man/systemd-path.xml -------------------------------------------------------------------------------- /man/systemd-run.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/man/systemd-run.xml -------------------------------------------------------------------------------- /man/systemd-sysusers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/man/systemd-sysusers.xml -------------------------------------------------------------------------------- /man/systemd-tmpfiles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/man/systemd-tmpfiles.xml -------------------------------------------------------------------------------- /man/systemd.device.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/man/systemd.device.xml -------------------------------------------------------------------------------- /man/systemd.dnssd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/man/systemd.dnssd.xml -------------------------------------------------------------------------------- /man/systemd.exec.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/man/systemd.exec.xml -------------------------------------------------------------------------------- /man/systemd.kill.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/man/systemd.kill.xml -------------------------------------------------------------------------------- /man/systemd.link.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/man/systemd.link.xml -------------------------------------------------------------------------------- /man/systemd.mount.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/man/systemd.mount.xml -------------------------------------------------------------------------------- /man/systemd.netdev.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/man/systemd.netdev.xml -------------------------------------------------------------------------------- /man/systemd.network.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/man/systemd.network.xml -------------------------------------------------------------------------------- /man/systemd.nspawn.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/man/systemd.nspawn.xml -------------------------------------------------------------------------------- /man/systemd.path.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/man/systemd.path.xml -------------------------------------------------------------------------------- /man/systemd.preset.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/man/systemd.preset.xml -------------------------------------------------------------------------------- /man/systemd.scope.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/man/systemd.scope.xml -------------------------------------------------------------------------------- /man/systemd.service.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/man/systemd.service.xml -------------------------------------------------------------------------------- /man/systemd.slice.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/man/systemd.slice.xml -------------------------------------------------------------------------------- /man/systemd.socket.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/man/systemd.socket.xml -------------------------------------------------------------------------------- /man/systemd.special.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/man/systemd.special.xml -------------------------------------------------------------------------------- /man/systemd.swap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/man/systemd.swap.xml -------------------------------------------------------------------------------- /man/systemd.syntax.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/man/systemd.syntax.xml -------------------------------------------------------------------------------- /man/systemd.target.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/man/systemd.target.xml -------------------------------------------------------------------------------- /man/systemd.time.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/man/systemd.time.xml -------------------------------------------------------------------------------- /man/systemd.timer.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/man/systemd.timer.xml -------------------------------------------------------------------------------- /man/systemd.unit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/man/systemd.unit.xml -------------------------------------------------------------------------------- /man/systemd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/man/systemd.xml -------------------------------------------------------------------------------- /man/sysusers.d.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/man/sysusers.d.xml -------------------------------------------------------------------------------- /man/telinit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/man/telinit.xml -------------------------------------------------------------------------------- /man/timedatectl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/man/timedatectl.xml -------------------------------------------------------------------------------- /man/timesyncd.conf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/man/timesyncd.conf.xml -------------------------------------------------------------------------------- /man/tmpfiles.d.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/man/tmpfiles.d.xml -------------------------------------------------------------------------------- /man/udev.conf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/man/udev.conf.xml -------------------------------------------------------------------------------- /man/udev.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/man/udev.xml -------------------------------------------------------------------------------- /man/udev_list_entry.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/man/udev_list_entry.xml -------------------------------------------------------------------------------- /man/udev_new.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/man/udev_new.xml -------------------------------------------------------------------------------- /man/udevadm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/man/udevadm.xml -------------------------------------------------------------------------------- /man/vconsole.conf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/man/vconsole.conf.xml -------------------------------------------------------------------------------- /meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/meson.build -------------------------------------------------------------------------------- /meson_options.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/meson_options.txt -------------------------------------------------------------------------------- /mkosi.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/mkosi.build -------------------------------------------------------------------------------- /mkosi.default: -------------------------------------------------------------------------------- 1 | .mkosi/mkosi.fedora -------------------------------------------------------------------------------- /modprobe.d/systemd.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/modprobe.d/systemd.conf -------------------------------------------------------------------------------- /network/99-default.link: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/network/99-default.link -------------------------------------------------------------------------------- /network/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/network/meson.build -------------------------------------------------------------------------------- /po/.gitignore: -------------------------------------------------------------------------------- 1 | /systemd.pot 2 | -------------------------------------------------------------------------------- /po/LINGUAS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/po/LINGUAS -------------------------------------------------------------------------------- /po/POTFILES.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/po/POTFILES.in -------------------------------------------------------------------------------- /po/POTFILES.skip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/po/POTFILES.skip -------------------------------------------------------------------------------- /po/be.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/po/be.po -------------------------------------------------------------------------------- /po/be@latin.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/po/be@latin.po -------------------------------------------------------------------------------- /po/bg.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/po/bg.po -------------------------------------------------------------------------------- /po/ca.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/po/ca.po -------------------------------------------------------------------------------- /po/cs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/po/cs.po -------------------------------------------------------------------------------- /po/da.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/po/da.po -------------------------------------------------------------------------------- /po/de.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/po/de.po -------------------------------------------------------------------------------- /po/el.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/po/el.po -------------------------------------------------------------------------------- /po/es.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/po/es.po -------------------------------------------------------------------------------- /po/fr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/po/fr.po -------------------------------------------------------------------------------- /po/gl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/po/gl.po -------------------------------------------------------------------------------- /po/hr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/po/hr.po -------------------------------------------------------------------------------- /po/hu.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/po/hu.po -------------------------------------------------------------------------------- /po/id.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/po/id.po -------------------------------------------------------------------------------- /po/it.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/po/it.po -------------------------------------------------------------------------------- /po/its/polkit.its: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/po/its/polkit.its -------------------------------------------------------------------------------- /po/its/polkit.loc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/po/its/polkit.loc -------------------------------------------------------------------------------- /po/ja.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/po/ja.po -------------------------------------------------------------------------------- /po/ko.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/po/ko.po -------------------------------------------------------------------------------- /po/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/po/meson.build -------------------------------------------------------------------------------- /po/pl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/po/pl.po -------------------------------------------------------------------------------- /po/pt_BR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/po/pt_BR.po -------------------------------------------------------------------------------- /po/ro.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/po/ro.po -------------------------------------------------------------------------------- /po/ru.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/po/ru.po -------------------------------------------------------------------------------- /po/sk.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/po/sk.po -------------------------------------------------------------------------------- /po/sr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/po/sr.po -------------------------------------------------------------------------------- /po/sv.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/po/sv.po -------------------------------------------------------------------------------- /po/tr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/po/tr.po -------------------------------------------------------------------------------- /po/uk.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/po/uk.po -------------------------------------------------------------------------------- /po/zh_CN.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/po/zh_CN.po -------------------------------------------------------------------------------- /po/zh_TW.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/po/zh_TW.po -------------------------------------------------------------------------------- /presets/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/presets/meson.build -------------------------------------------------------------------------------- /rules/40-elevator.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/rules/40-elevator.rules -------------------------------------------------------------------------------- /rules/40-redhat.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/rules/40-redhat.rules -------------------------------------------------------------------------------- /rules/60-block.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/rules/60-block.rules -------------------------------------------------------------------------------- /rules/60-cdrom_id.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/rules/60-cdrom_id.rules -------------------------------------------------------------------------------- /rules/60-drm.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/rules/60-drm.rules -------------------------------------------------------------------------------- /rules/60-evdev.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/rules/60-evdev.rules -------------------------------------------------------------------------------- /rules/60-fido-id.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/rules/60-fido-id.rules -------------------------------------------------------------------------------- /rules/60-input-id.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/rules/60-input-id.rules -------------------------------------------------------------------------------- /rules/60-sensor.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/rules/60-sensor.rules -------------------------------------------------------------------------------- /rules/60-serial.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/rules/60-serial.rules -------------------------------------------------------------------------------- /rules/64-btrfs.rules.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/rules/64-btrfs.rules.in -------------------------------------------------------------------------------- /rules/70-joystick.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/rules/70-joystick.rules -------------------------------------------------------------------------------- /rules/70-mouse.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/rules/70-mouse.rules -------------------------------------------------------------------------------- /rules/70-touchpad.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/rules/70-touchpad.rules -------------------------------------------------------------------------------- /rules/73-idrac.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/rules/73-idrac.rules -------------------------------------------------------------------------------- /rules/75-probe_mtd.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/rules/75-probe_mtd.rules -------------------------------------------------------------------------------- /rules/80-drivers.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/rules/80-drivers.rules -------------------------------------------------------------------------------- /rules/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/rules/meson.build -------------------------------------------------------------------------------- /src/ac-power/ac-power.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/ac-power/ac-power.c -------------------------------------------------------------------------------- /src/activate/activate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/activate/activate.c -------------------------------------------------------------------------------- /src/analyze/analyze.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/analyze/analyze.c -------------------------------------------------------------------------------- /src/analyze/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/analyze/meson.build -------------------------------------------------------------------------------- /src/basic/MurmurHash2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/basic/MurmurHash2.c -------------------------------------------------------------------------------- /src/basic/MurmurHash2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/basic/MurmurHash2.h -------------------------------------------------------------------------------- /src/basic/af-list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/basic/af-list.c -------------------------------------------------------------------------------- /src/basic/af-list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/basic/af-list.h -------------------------------------------------------------------------------- /src/basic/af-to-name.awk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/basic/af-to-name.awk -------------------------------------------------------------------------------- /src/basic/alloc-util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/basic/alloc-util.c -------------------------------------------------------------------------------- /src/basic/alloc-util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/basic/alloc-util.h -------------------------------------------------------------------------------- /src/basic/architecture.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/basic/architecture.c -------------------------------------------------------------------------------- /src/basic/architecture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/basic/architecture.h -------------------------------------------------------------------------------- /src/basic/arphrd-list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/basic/arphrd-list.c -------------------------------------------------------------------------------- /src/basic/arphrd-list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/basic/arphrd-list.h -------------------------------------------------------------------------------- /src/basic/async.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/basic/async.c -------------------------------------------------------------------------------- /src/basic/async.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/basic/async.h -------------------------------------------------------------------------------- /src/basic/audit-util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/basic/audit-util.c -------------------------------------------------------------------------------- /src/basic/audit-util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/basic/audit-util.h -------------------------------------------------------------------------------- /src/basic/barrier.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/basic/barrier.c -------------------------------------------------------------------------------- /src/basic/barrier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/basic/barrier.h -------------------------------------------------------------------------------- /src/basic/bitmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/basic/bitmap.c -------------------------------------------------------------------------------- /src/basic/bitmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/basic/bitmap.h -------------------------------------------------------------------------------- /src/basic/blkid-util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/basic/blkid-util.h -------------------------------------------------------------------------------- /src/basic/bpf-program.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/basic/bpf-program.c -------------------------------------------------------------------------------- /src/basic/bpf-program.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/basic/bpf-program.h -------------------------------------------------------------------------------- /src/basic/btrfs-ctree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/basic/btrfs-ctree.h -------------------------------------------------------------------------------- /src/basic/btrfs-util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/basic/btrfs-util.c -------------------------------------------------------------------------------- /src/basic/btrfs-util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/basic/btrfs-util.h -------------------------------------------------------------------------------- /src/basic/build.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/basic/build.h -------------------------------------------------------------------------------- /src/basic/bus-label.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/basic/bus-label.c -------------------------------------------------------------------------------- /src/basic/bus-label.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/basic/bus-label.h -------------------------------------------------------------------------------- /src/basic/calendarspec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/basic/calendarspec.c -------------------------------------------------------------------------------- /src/basic/calendarspec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/basic/calendarspec.h -------------------------------------------------------------------------------- /src/basic/cap-list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/basic/cap-list.c -------------------------------------------------------------------------------- /src/basic/cap-list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/basic/cap-list.h -------------------------------------------------------------------------------- /src/basic/cgroup-util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/basic/cgroup-util.c -------------------------------------------------------------------------------- /src/basic/cgroup-util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/basic/cgroup-util.h -------------------------------------------------------------------------------- /src/basic/chattr-util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/basic/chattr-util.c -------------------------------------------------------------------------------- /src/basic/chattr-util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/basic/chattr-util.h -------------------------------------------------------------------------------- /src/basic/clock-util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/basic/clock-util.c -------------------------------------------------------------------------------- /src/basic/clock-util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/basic/clock-util.h -------------------------------------------------------------------------------- /src/basic/conf-files.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/basic/conf-files.c -------------------------------------------------------------------------------- /src/basic/conf-files.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/basic/conf-files.h -------------------------------------------------------------------------------- /src/basic/copy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/basic/copy.c -------------------------------------------------------------------------------- /src/basic/copy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/basic/copy.h -------------------------------------------------------------------------------- /src/basic/cpu-set-util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/basic/cpu-set-util.c -------------------------------------------------------------------------------- /src/basic/cpu-set-util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/basic/cpu-set-util.h -------------------------------------------------------------------------------- /src/basic/crypt-util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/basic/crypt-util.c -------------------------------------------------------------------------------- /src/basic/crypt-util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/basic/crypt-util.h -------------------------------------------------------------------------------- /src/basic/def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/basic/def.h -------------------------------------------------------------------------------- /src/basic/device-nodes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/basic/device-nodes.c -------------------------------------------------------------------------------- /src/basic/device-nodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/basic/device-nodes.h -------------------------------------------------------------------------------- /src/basic/dirent-util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/basic/dirent-util.c -------------------------------------------------------------------------------- /src/basic/dirent-util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/basic/dirent-util.h -------------------------------------------------------------------------------- /src/basic/env-util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/basic/env-util.c -------------------------------------------------------------------------------- /src/basic/env-util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/basic/env-util.h -------------------------------------------------------------------------------- /src/basic/errno-list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/basic/errno-list.c -------------------------------------------------------------------------------- /src/basic/errno-list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/basic/errno-list.h -------------------------------------------------------------------------------- /src/basic/escape.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/basic/escape.c -------------------------------------------------------------------------------- /src/basic/escape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/basic/escape.h -------------------------------------------------------------------------------- /src/basic/exec-util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/basic/exec-util.c -------------------------------------------------------------------------------- /src/basic/exec-util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/basic/exec-util.h -------------------------------------------------------------------------------- /src/basic/exit-status.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/basic/exit-status.c -------------------------------------------------------------------------------- /src/basic/exit-status.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/basic/exit-status.h -------------------------------------------------------------------------------- /src/basic/extract-word.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/basic/extract-word.c -------------------------------------------------------------------------------- /src/basic/extract-word.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/basic/extract-word.h -------------------------------------------------------------------------------- /src/basic/fd-util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/basic/fd-util.c -------------------------------------------------------------------------------- /src/basic/fd-util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/basic/fd-util.h -------------------------------------------------------------------------------- /src/basic/fileio-label.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/basic/fileio-label.c -------------------------------------------------------------------------------- /src/basic/fileio-label.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/basic/fileio-label.h -------------------------------------------------------------------------------- /src/basic/fileio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/basic/fileio.c -------------------------------------------------------------------------------- /src/basic/fileio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/basic/fileio.h -------------------------------------------------------------------------------- /src/basic/format-table.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/basic/format-table.c -------------------------------------------------------------------------------- /src/basic/format-table.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/basic/format-table.h -------------------------------------------------------------------------------- /src/basic/format-util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/basic/format-util.h -------------------------------------------------------------------------------- /src/basic/fs-util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/basic/fs-util.c -------------------------------------------------------------------------------- /src/basic/fs-util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/basic/fs-util.h -------------------------------------------------------------------------------- /src/basic/gcrypt-util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/basic/gcrypt-util.c -------------------------------------------------------------------------------- /src/basic/gcrypt-util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/basic/gcrypt-util.h -------------------------------------------------------------------------------- /src/basic/glob-util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/basic/glob-util.c -------------------------------------------------------------------------------- /src/basic/glob-util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/basic/glob-util.h -------------------------------------------------------------------------------- /src/basic/gunicode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/basic/gunicode.c -------------------------------------------------------------------------------- /src/basic/gunicode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/basic/gunicode.h -------------------------------------------------------------------------------- /src/basic/hash-funcs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/basic/hash-funcs.c -------------------------------------------------------------------------------- /src/basic/hash-funcs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/basic/hash-funcs.h -------------------------------------------------------------------------------- /src/basic/hashmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/basic/hashmap.c -------------------------------------------------------------------------------- /src/basic/hashmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/basic/hashmap.h -------------------------------------------------------------------------------- /src/basic/hexdecoct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/basic/hexdecoct.c -------------------------------------------------------------------------------- /src/basic/hexdecoct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/basic/hexdecoct.h -------------------------------------------------------------------------------- /src/basic/in-addr-util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/basic/in-addr-util.c -------------------------------------------------------------------------------- /src/basic/in-addr-util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/basic/in-addr-util.h -------------------------------------------------------------------------------- /src/basic/io-util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/basic/io-util.c -------------------------------------------------------------------------------- /src/basic/io-util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/basic/io-util.h -------------------------------------------------------------------------------- /src/basic/ioprio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/basic/ioprio.h -------------------------------------------------------------------------------- /src/basic/khash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/basic/khash.c -------------------------------------------------------------------------------- /src/basic/khash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/basic/khash.h -------------------------------------------------------------------------------- /src/basic/label.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/basic/label.c -------------------------------------------------------------------------------- /src/basic/label.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/basic/label.h -------------------------------------------------------------------------------- /src/basic/list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/basic/list.h -------------------------------------------------------------------------------- /src/basic/locale-util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/basic/locale-util.c -------------------------------------------------------------------------------- /src/basic/locale-util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/basic/locale-util.h -------------------------------------------------------------------------------- /src/basic/log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/basic/log.c -------------------------------------------------------------------------------- /src/basic/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/basic/log.h -------------------------------------------------------------------------------- /src/basic/login-util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/basic/login-util.c -------------------------------------------------------------------------------- /src/basic/login-util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/basic/login-util.h -------------------------------------------------------------------------------- /src/basic/macro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/basic/macro.h -------------------------------------------------------------------------------- /src/basic/memfd-util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/basic/memfd-util.c -------------------------------------------------------------------------------- /src/basic/memfd-util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/basic/memfd-util.h -------------------------------------------------------------------------------- /src/basic/mempool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/basic/mempool.c -------------------------------------------------------------------------------- /src/basic/mempool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/basic/mempool.h -------------------------------------------------------------------------------- /src/basic/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/basic/meson.build -------------------------------------------------------------------------------- /src/basic/missing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/basic/missing.h -------------------------------------------------------------------------------- /src/basic/mkdir-label.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/basic/mkdir-label.c -------------------------------------------------------------------------------- /src/basic/mkdir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/basic/mkdir.c -------------------------------------------------------------------------------- /src/basic/mkdir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/basic/mkdir.h -------------------------------------------------------------------------------- /src/basic/module-util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/basic/module-util.h -------------------------------------------------------------------------------- /src/basic/mount-util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/basic/mount-util.c -------------------------------------------------------------------------------- /src/basic/mount-util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/basic/mount-util.h -------------------------------------------------------------------------------- /src/basic/nss-util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/basic/nss-util.h -------------------------------------------------------------------------------- /src/basic/ordered-set.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/basic/ordered-set.c -------------------------------------------------------------------------------- /src/basic/ordered-set.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/basic/ordered-set.h -------------------------------------------------------------------------------- /src/basic/os-util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/basic/os-util.c -------------------------------------------------------------------------------- /src/basic/os-util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/basic/os-util.h -------------------------------------------------------------------------------- /src/basic/pager.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/basic/pager.c -------------------------------------------------------------------------------- /src/basic/pager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/basic/pager.h -------------------------------------------------------------------------------- /src/basic/parse-util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/basic/parse-util.c -------------------------------------------------------------------------------- /src/basic/parse-util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/basic/parse-util.h -------------------------------------------------------------------------------- /src/basic/path-util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/basic/path-util.c -------------------------------------------------------------------------------- /src/basic/path-util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/basic/path-util.h -------------------------------------------------------------------------------- /src/basic/prioq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/basic/prioq.c -------------------------------------------------------------------------------- /src/basic/prioq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/basic/prioq.h -------------------------------------------------------------------------------- /src/basic/proc-cmdline.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/basic/proc-cmdline.c -------------------------------------------------------------------------------- /src/basic/proc-cmdline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/basic/proc-cmdline.h -------------------------------------------------------------------------------- /src/basic/process-util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/basic/process-util.c -------------------------------------------------------------------------------- /src/basic/process-util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/basic/process-util.h -------------------------------------------------------------------------------- /src/basic/procfs-util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/basic/procfs-util.c -------------------------------------------------------------------------------- /src/basic/procfs-util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/basic/procfs-util.h -------------------------------------------------------------------------------- /src/basic/random-util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/basic/random-util.c -------------------------------------------------------------------------------- /src/basic/random-util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/basic/random-util.h -------------------------------------------------------------------------------- /src/basic/ratelimit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/basic/ratelimit.c -------------------------------------------------------------------------------- /src/basic/ratelimit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/basic/ratelimit.h -------------------------------------------------------------------------------- /src/basic/raw-clone.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/basic/raw-clone.h -------------------------------------------------------------------------------- /src/basic/raw-reboot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/basic/raw-reboot.h -------------------------------------------------------------------------------- /src/basic/reboot-util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/basic/reboot-util.c -------------------------------------------------------------------------------- /src/basic/reboot-util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/basic/reboot-util.h -------------------------------------------------------------------------------- /src/basic/refcnt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/basic/refcnt.h -------------------------------------------------------------------------------- /src/basic/replace-var.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/basic/replace-var.c -------------------------------------------------------------------------------- /src/basic/replace-var.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/basic/replace-var.h -------------------------------------------------------------------------------- /src/basic/rlimit-util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/basic/rlimit-util.c -------------------------------------------------------------------------------- /src/basic/rlimit-util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/basic/rlimit-util.h -------------------------------------------------------------------------------- /src/basic/rm-rf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/basic/rm-rf.c -------------------------------------------------------------------------------- /src/basic/rm-rf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/basic/rm-rf.h -------------------------------------------------------------------------------- /src/basic/securebits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/basic/securebits.h -------------------------------------------------------------------------------- /src/basic/selinux-util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/basic/selinux-util.c -------------------------------------------------------------------------------- /src/basic/selinux-util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/basic/selinux-util.h -------------------------------------------------------------------------------- /src/basic/set.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/basic/set.h -------------------------------------------------------------------------------- /src/basic/sigbus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/basic/sigbus.c -------------------------------------------------------------------------------- /src/basic/sigbus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/basic/sigbus.h -------------------------------------------------------------------------------- /src/basic/signal-util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/basic/signal-util.c -------------------------------------------------------------------------------- /src/basic/signal-util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/basic/signal-util.h -------------------------------------------------------------------------------- /src/basic/siphash24.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/basic/siphash24.c -------------------------------------------------------------------------------- /src/basic/siphash24.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/basic/siphash24.h -------------------------------------------------------------------------------- /src/basic/smack-util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/basic/smack-util.c -------------------------------------------------------------------------------- /src/basic/smack-util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/basic/smack-util.h -------------------------------------------------------------------------------- /src/basic/socket-label.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/basic/socket-label.c -------------------------------------------------------------------------------- /src/basic/socket-util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/basic/socket-util.c -------------------------------------------------------------------------------- /src/basic/socket-util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/basic/socket-util.h -------------------------------------------------------------------------------- /src/basic/special.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/basic/special.h -------------------------------------------------------------------------------- /src/basic/stat-util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/basic/stat-util.c -------------------------------------------------------------------------------- /src/basic/stat-util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/basic/stat-util.h -------------------------------------------------------------------------------- /src/basic/stdio-util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/basic/stdio-util.h -------------------------------------------------------------------------------- /src/basic/strbuf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/basic/strbuf.c -------------------------------------------------------------------------------- /src/basic/strbuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/basic/strbuf.h -------------------------------------------------------------------------------- /src/basic/string-table.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/basic/string-table.c -------------------------------------------------------------------------------- /src/basic/string-table.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/basic/string-table.h -------------------------------------------------------------------------------- /src/basic/string-util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/basic/string-util.c -------------------------------------------------------------------------------- /src/basic/string-util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/basic/string-util.h -------------------------------------------------------------------------------- /src/basic/strv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/basic/strv.c -------------------------------------------------------------------------------- /src/basic/strv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/basic/strv.h -------------------------------------------------------------------------------- /src/basic/strxcpyx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/basic/strxcpyx.c -------------------------------------------------------------------------------- /src/basic/strxcpyx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/basic/strxcpyx.h -------------------------------------------------------------------------------- /src/basic/syslog-util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/basic/syslog-util.c -------------------------------------------------------------------------------- /src/basic/syslog-util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/basic/syslog-util.h -------------------------------------------------------------------------------- /src/basic/time-util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/basic/time-util.c -------------------------------------------------------------------------------- /src/basic/time-util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/basic/time-util.h -------------------------------------------------------------------------------- /src/basic/umask-util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/basic/umask-util.h -------------------------------------------------------------------------------- /src/basic/unaligned.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/basic/unaligned.h -------------------------------------------------------------------------------- /src/basic/unit-def.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/basic/unit-def.c -------------------------------------------------------------------------------- /src/basic/unit-def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/basic/unit-def.h -------------------------------------------------------------------------------- /src/basic/unit-name.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/basic/unit-name.c -------------------------------------------------------------------------------- /src/basic/unit-name.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/basic/unit-name.h -------------------------------------------------------------------------------- /src/basic/user-util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/basic/user-util.c -------------------------------------------------------------------------------- /src/basic/user-util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/basic/user-util.h -------------------------------------------------------------------------------- /src/basic/utf8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/basic/utf8.c -------------------------------------------------------------------------------- /src/basic/utf8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/basic/utf8.h -------------------------------------------------------------------------------- /src/basic/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/basic/util.c -------------------------------------------------------------------------------- /src/basic/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/basic/util.h -------------------------------------------------------------------------------- /src/basic/verbs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/basic/verbs.c -------------------------------------------------------------------------------- /src/basic/verbs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/basic/verbs.h -------------------------------------------------------------------------------- /src/basic/virt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/basic/virt.c -------------------------------------------------------------------------------- /src/basic/virt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/basic/virt.h -------------------------------------------------------------------------------- /src/basic/web-util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/basic/web-util.c -------------------------------------------------------------------------------- /src/basic/web-util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/basic/web-util.h -------------------------------------------------------------------------------- /src/basic/xattr-util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/basic/xattr-util.c -------------------------------------------------------------------------------- /src/basic/xattr-util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/basic/xattr-util.h -------------------------------------------------------------------------------- /src/basic/xml.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/basic/xml.c -------------------------------------------------------------------------------- /src/basic/xml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/basic/xml.h -------------------------------------------------------------------------------- /src/binfmt/binfmt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/binfmt/binfmt.c -------------------------------------------------------------------------------- /src/boot/bootctl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/boot/bootctl.c -------------------------------------------------------------------------------- /src/boot/efi/boot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/boot/efi/boot.c -------------------------------------------------------------------------------- /src/boot/efi/console.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/boot/efi/console.c -------------------------------------------------------------------------------- /src/boot/efi/console.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/boot/efi/console.h -------------------------------------------------------------------------------- /src/boot/efi/disk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/boot/efi/disk.c -------------------------------------------------------------------------------- /src/boot/efi/disk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/boot/efi/disk.h -------------------------------------------------------------------------------- /src/boot/efi/graphics.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/boot/efi/graphics.c -------------------------------------------------------------------------------- /src/boot/efi/graphics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/boot/efi/graphics.h -------------------------------------------------------------------------------- /src/boot/efi/linux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/boot/efi/linux.c -------------------------------------------------------------------------------- /src/boot/efi/linux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/boot/efi/linux.h -------------------------------------------------------------------------------- /src/boot/efi/measure.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/boot/efi/measure.c -------------------------------------------------------------------------------- /src/boot/efi/measure.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/boot/efi/measure.h -------------------------------------------------------------------------------- /src/boot/efi/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/boot/efi/meson.build -------------------------------------------------------------------------------- /src/boot/efi/pe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/boot/efi/pe.c -------------------------------------------------------------------------------- /src/boot/efi/pe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/boot/efi/pe.h -------------------------------------------------------------------------------- /src/boot/efi/shim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/boot/efi/shim.c -------------------------------------------------------------------------------- /src/boot/efi/shim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/boot/efi/shim.h -------------------------------------------------------------------------------- /src/boot/efi/splash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/boot/efi/splash.c -------------------------------------------------------------------------------- /src/boot/efi/splash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/boot/efi/splash.h -------------------------------------------------------------------------------- /src/boot/efi/stub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/boot/efi/stub.c -------------------------------------------------------------------------------- /src/boot/efi/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/boot/efi/util.c -------------------------------------------------------------------------------- /src/boot/efi/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/boot/efi/util.h -------------------------------------------------------------------------------- /src/busctl/busctl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/busctl/busctl.c -------------------------------------------------------------------------------- /src/cgls/cgls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/cgls/cgls.c -------------------------------------------------------------------------------- /src/cgtop/cgtop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/cgtop/cgtop.c -------------------------------------------------------------------------------- /src/core/all-units.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/core/all-units.h -------------------------------------------------------------------------------- /src/core/audit-fd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/core/audit-fd.c -------------------------------------------------------------------------------- /src/core/audit-fd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/core/audit-fd.h -------------------------------------------------------------------------------- /src/core/automount.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/core/automount.c -------------------------------------------------------------------------------- /src/core/automount.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/core/automount.h -------------------------------------------------------------------------------- /src/core/bpf-firewall.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/core/bpf-firewall.c -------------------------------------------------------------------------------- /src/core/bpf-firewall.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/core/bpf-firewall.h -------------------------------------------------------------------------------- /src/core/cgroup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/core/cgroup.c -------------------------------------------------------------------------------- /src/core/cgroup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/core/cgroup.h -------------------------------------------------------------------------------- /src/core/dbus-cgroup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/core/dbus-cgroup.c -------------------------------------------------------------------------------- /src/core/dbus-cgroup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/core/dbus-cgroup.h -------------------------------------------------------------------------------- /src/core/dbus-device.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/core/dbus-device.c -------------------------------------------------------------------------------- /src/core/dbus-device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/core/dbus-device.h -------------------------------------------------------------------------------- /src/core/dbus-execute.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/core/dbus-execute.c -------------------------------------------------------------------------------- /src/core/dbus-execute.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/core/dbus-execute.h -------------------------------------------------------------------------------- /src/core/dbus-job.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/core/dbus-job.c -------------------------------------------------------------------------------- /src/core/dbus-job.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/core/dbus-job.h -------------------------------------------------------------------------------- /src/core/dbus-kill.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/core/dbus-kill.c -------------------------------------------------------------------------------- /src/core/dbus-kill.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/core/dbus-kill.h -------------------------------------------------------------------------------- /src/core/dbus-manager.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/core/dbus-manager.c -------------------------------------------------------------------------------- /src/core/dbus-manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/core/dbus-manager.h -------------------------------------------------------------------------------- /src/core/dbus-mount.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/core/dbus-mount.c -------------------------------------------------------------------------------- /src/core/dbus-mount.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/core/dbus-mount.h -------------------------------------------------------------------------------- /src/core/dbus-path.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/core/dbus-path.c -------------------------------------------------------------------------------- /src/core/dbus-path.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/core/dbus-path.h -------------------------------------------------------------------------------- /src/core/dbus-scope.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/core/dbus-scope.c -------------------------------------------------------------------------------- /src/core/dbus-scope.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/core/dbus-scope.h -------------------------------------------------------------------------------- /src/core/dbus-service.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/core/dbus-service.c -------------------------------------------------------------------------------- /src/core/dbus-service.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/core/dbus-service.h -------------------------------------------------------------------------------- /src/core/dbus-slice.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/core/dbus-slice.c -------------------------------------------------------------------------------- /src/core/dbus-slice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/core/dbus-slice.h -------------------------------------------------------------------------------- /src/core/dbus-socket.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/core/dbus-socket.c -------------------------------------------------------------------------------- /src/core/dbus-socket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/core/dbus-socket.h -------------------------------------------------------------------------------- /src/core/dbus-swap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/core/dbus-swap.c -------------------------------------------------------------------------------- /src/core/dbus-swap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/core/dbus-swap.h -------------------------------------------------------------------------------- /src/core/dbus-target.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/core/dbus-target.c -------------------------------------------------------------------------------- /src/core/dbus-target.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/core/dbus-target.h -------------------------------------------------------------------------------- /src/core/dbus-timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/core/dbus-timer.c -------------------------------------------------------------------------------- /src/core/dbus-timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/core/dbus-timer.h -------------------------------------------------------------------------------- /src/core/dbus-unit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/core/dbus-unit.c -------------------------------------------------------------------------------- /src/core/dbus-unit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/core/dbus-unit.h -------------------------------------------------------------------------------- /src/core/dbus-util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/core/dbus-util.c -------------------------------------------------------------------------------- /src/core/dbus-util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/core/dbus-util.h -------------------------------------------------------------------------------- /src/core/dbus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/core/dbus.c -------------------------------------------------------------------------------- /src/core/dbus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/core/dbus.h -------------------------------------------------------------------------------- /src/core/device.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/core/device.c -------------------------------------------------------------------------------- /src/core/device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/core/device.h -------------------------------------------------------------------------------- /src/core/dynamic-user.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/core/dynamic-user.c -------------------------------------------------------------------------------- /src/core/dynamic-user.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/core/dynamic-user.h -------------------------------------------------------------------------------- /src/core/execute.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/core/execute.c -------------------------------------------------------------------------------- /src/core/execute.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/core/execute.h -------------------------------------------------------------------------------- /src/core/ima-setup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/core/ima-setup.c -------------------------------------------------------------------------------- /src/core/ima-setup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/core/ima-setup.h -------------------------------------------------------------------------------- /src/core/job.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/core/job.c -------------------------------------------------------------------------------- /src/core/job.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/core/job.h -------------------------------------------------------------------------------- /src/core/kill.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/core/kill.c -------------------------------------------------------------------------------- /src/core/kill.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/core/kill.h -------------------------------------------------------------------------------- /src/core/killall.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/core/killall.c -------------------------------------------------------------------------------- /src/core/killall.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/core/killall.h -------------------------------------------------------------------------------- /src/core/kmod-setup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/core/kmod-setup.c -------------------------------------------------------------------------------- /src/core/load-dropin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/core/load-dropin.c -------------------------------------------------------------------------------- /src/core/load-dropin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/core/load-dropin.h -------------------------------------------------------------------------------- /src/core/load-fragment.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/core/load-fragment.c -------------------------------------------------------------------------------- /src/core/load-fragment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/core/load-fragment.h -------------------------------------------------------------------------------- /src/core/locale-setup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/core/locale-setup.c -------------------------------------------------------------------------------- /src/core/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/core/main.c -------------------------------------------------------------------------------- /src/core/manager.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/core/manager.c -------------------------------------------------------------------------------- /src/core/manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/core/manager.h -------------------------------------------------------------------------------- /src/core/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/core/meson.build -------------------------------------------------------------------------------- /src/core/mount-setup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/core/mount-setup.c -------------------------------------------------------------------------------- /src/core/mount-setup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/core/mount-setup.h -------------------------------------------------------------------------------- /src/core/mount.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/core/mount.c -------------------------------------------------------------------------------- /src/core/mount.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/core/mount.h -------------------------------------------------------------------------------- /src/core/namespace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/core/namespace.c -------------------------------------------------------------------------------- /src/core/namespace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/core/namespace.h -------------------------------------------------------------------------------- /src/core/path.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/core/path.c -------------------------------------------------------------------------------- /src/core/path.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/core/path.h -------------------------------------------------------------------------------- /src/core/scope.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/core/scope.c -------------------------------------------------------------------------------- /src/core/scope.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/core/scope.h -------------------------------------------------------------------------------- /src/core/selinux-setup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/core/selinux-setup.c -------------------------------------------------------------------------------- /src/core/selinux-setup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/core/selinux-setup.h -------------------------------------------------------------------------------- /src/core/service.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/core/service.c -------------------------------------------------------------------------------- /src/core/service.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/core/service.h -------------------------------------------------------------------------------- /src/core/show-status.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/core/show-status.c -------------------------------------------------------------------------------- /src/core/show-status.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/core/show-status.h -------------------------------------------------------------------------------- /src/core/shutdown.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/core/shutdown.c -------------------------------------------------------------------------------- /src/core/slice.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/core/slice.c -------------------------------------------------------------------------------- /src/core/slice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/core/slice.h -------------------------------------------------------------------------------- /src/core/smack-setup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/core/smack-setup.c -------------------------------------------------------------------------------- /src/core/smack-setup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/core/smack-setup.h -------------------------------------------------------------------------------- /src/core/socket.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/core/socket.c -------------------------------------------------------------------------------- /src/core/socket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/core/socket.h -------------------------------------------------------------------------------- /src/core/swap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/core/swap.c -------------------------------------------------------------------------------- /src/core/swap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/core/swap.h -------------------------------------------------------------------------------- /src/core/system.conf.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/core/system.conf.in -------------------------------------------------------------------------------- /src/core/systemd.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/core/systemd.pc.in -------------------------------------------------------------------------------- /src/core/target.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/core/target.c -------------------------------------------------------------------------------- /src/core/target.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/core/target.h -------------------------------------------------------------------------------- /src/core/timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/core/timer.c -------------------------------------------------------------------------------- /src/core/timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/core/timer.h -------------------------------------------------------------------------------- /src/core/transaction.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/core/transaction.c -------------------------------------------------------------------------------- /src/core/transaction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/core/transaction.h -------------------------------------------------------------------------------- /src/core/umount.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/core/umount.c -------------------------------------------------------------------------------- /src/core/umount.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/core/umount.h -------------------------------------------------------------------------------- /src/core/unit-printf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/core/unit-printf.c -------------------------------------------------------------------------------- /src/core/unit-printf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/core/unit-printf.h -------------------------------------------------------------------------------- /src/core/unit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/core/unit.c -------------------------------------------------------------------------------- /src/core/unit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/core/unit.h -------------------------------------------------------------------------------- /src/core/user.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/core/user.conf -------------------------------------------------------------------------------- /src/coredump/coredump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/coredump/coredump.c -------------------------------------------------------------------------------- /src/coredump/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/coredump/meson.build -------------------------------------------------------------------------------- /src/delta/delta.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/delta/delta.c -------------------------------------------------------------------------------- /src/dissect/dissect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/dissect/dissect.c -------------------------------------------------------------------------------- /src/escape/escape.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/escape/escape.c -------------------------------------------------------------------------------- /src/fsck/fsck.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/fsck/fsck.c -------------------------------------------------------------------------------- /src/fuzz/fuzz-compress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/fuzz/fuzz-compress.c -------------------------------------------------------------------------------- /src/fuzz/fuzz-dhcp-server.options: -------------------------------------------------------------------------------- 1 | [libfuzzer] 2 | max_len = 600 3 | -------------------------------------------------------------------------------- /src/fuzz/fuzz-dns-packet.options: -------------------------------------------------------------------------------- 1 | [libfuzzer] 2 | max_len = 65535 3 | -------------------------------------------------------------------------------- /src/fuzz/fuzz-journal-remote.options: -------------------------------------------------------------------------------- 1 | [libfuzzer] 2 | max_len = 65536 3 | -------------------------------------------------------------------------------- /src/fuzz/fuzz-journald-stream.options: -------------------------------------------------------------------------------- 1 | [libfuzzer] 2 | max_len = 65536 3 | -------------------------------------------------------------------------------- /src/fuzz/fuzz-journald.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/fuzz/fuzz-journald.c -------------------------------------------------------------------------------- /src/fuzz/fuzz-journald.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/fuzz/fuzz-journald.h -------------------------------------------------------------------------------- /src/fuzz/fuzz-main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/fuzz/fuzz-main.c -------------------------------------------------------------------------------- /src/fuzz/fuzz-ndisc-rs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/fuzz/fuzz-ndisc-rs.c -------------------------------------------------------------------------------- /src/fuzz/fuzz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/fuzz/fuzz.h -------------------------------------------------------------------------------- /src/fuzz/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/fuzz/meson.build -------------------------------------------------------------------------------- /src/hostname/hostnamed.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/hostname/hostnamed.c -------------------------------------------------------------------------------- /src/hostname/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/hostname/meson.build -------------------------------------------------------------------------------- /src/hwdb/hwdb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/hwdb/hwdb.c -------------------------------------------------------------------------------- /src/import/curl-util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/import/curl-util.c -------------------------------------------------------------------------------- /src/import/curl-util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/import/curl-util.h -------------------------------------------------------------------------------- /src/import/export-raw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/import/export-raw.c -------------------------------------------------------------------------------- /src/import/export-raw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/import/export-raw.h -------------------------------------------------------------------------------- /src/import/export-tar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/import/export-tar.c -------------------------------------------------------------------------------- /src/import/export-tar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/import/export-tar.h -------------------------------------------------------------------------------- /src/import/export.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/import/export.c -------------------------------------------------------------------------------- /src/import/import-raw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/import/import-raw.c -------------------------------------------------------------------------------- /src/import/import-raw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/import/import-raw.h -------------------------------------------------------------------------------- /src/import/import-tar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/import/import-tar.c -------------------------------------------------------------------------------- /src/import/import-tar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/import/import-tar.h -------------------------------------------------------------------------------- /src/import/import.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/import/import.c -------------------------------------------------------------------------------- /src/import/importd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/import/importd.c -------------------------------------------------------------------------------- /src/import/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/import/meson.build -------------------------------------------------------------------------------- /src/import/pull-common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/import/pull-common.c -------------------------------------------------------------------------------- /src/import/pull-common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/import/pull-common.h -------------------------------------------------------------------------------- /src/import/pull-job.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/import/pull-job.c -------------------------------------------------------------------------------- /src/import/pull-job.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/import/pull-job.h -------------------------------------------------------------------------------- /src/import/pull-raw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/import/pull-raw.c -------------------------------------------------------------------------------- /src/import/pull-raw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/import/pull-raw.h -------------------------------------------------------------------------------- /src/import/pull-tar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/import/pull-tar.c -------------------------------------------------------------------------------- /src/import/pull-tar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/import/pull-tar.h -------------------------------------------------------------------------------- /src/import/pull.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/import/pull.c -------------------------------------------------------------------------------- /src/import/qcow2-util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/import/qcow2-util.c -------------------------------------------------------------------------------- /src/initctl/initctl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/initctl/initctl.c -------------------------------------------------------------------------------- /src/journal/cat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/journal/cat.c -------------------------------------------------------------------------------- /src/journal/catalog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/journal/catalog.c -------------------------------------------------------------------------------- /src/journal/catalog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/journal/catalog.h -------------------------------------------------------------------------------- /src/journal/fsprg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/journal/fsprg.c -------------------------------------------------------------------------------- /src/journal/fsprg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/journal/fsprg.h -------------------------------------------------------------------------------- /src/journal/lookup3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/journal/lookup3.c -------------------------------------------------------------------------------- /src/journal/lookup3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/journal/lookup3.h -------------------------------------------------------------------------------- /src/libsystemd/sd-bus/test-bus-vtable-cc.cc: -------------------------------------------------------------------------------- 1 | test-bus-vtable.c -------------------------------------------------------------------------------- /src/libudev/libudev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/libudev/libudev.c -------------------------------------------------------------------------------- /src/libudev/libudev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/libudev/libudev.h -------------------------------------------------------------------------------- /src/locale/localed.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/locale/localed.c -------------------------------------------------------------------------------- /src/login/inhibit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/login/inhibit.c -------------------------------------------------------------------------------- /src/login/loginctl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/login/loginctl.c -------------------------------------------------------------------------------- /src/login/logind.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/login/logind.c -------------------------------------------------------------------------------- /src/login/logind.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/login/logind.h -------------------------------------------------------------------------------- /src/login/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/login/meson.build -------------------------------------------------------------------------------- /src/machine/machine.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/machine/machine.c -------------------------------------------------------------------------------- /src/machine/machine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/machine/machine.h -------------------------------------------------------------------------------- /src/notify/notify.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/notify/notify.c -------------------------------------------------------------------------------- /src/nspawn/nspawn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/nspawn/nspawn.c -------------------------------------------------------------------------------- /src/path/path.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/path/path.c -------------------------------------------------------------------------------- /src/pstore/pstore.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/pstore/pstore.c -------------------------------------------------------------------------------- /src/resolve/RFCs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/resolve/RFCs -------------------------------------------------------------------------------- /src/resolve/generate-dns_type-list.sed: -------------------------------------------------------------------------------- 1 | s/.* DNS_TYPE_(\w+).*/\1/p 2 | -------------------------------------------------------------------------------- /src/rfkill/rfkill.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/rfkill/rfkill.c -------------------------------------------------------------------------------- /src/run/run.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/run/run.c -------------------------------------------------------------------------------- /src/shared/acl-util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/shared/acl-util.c -------------------------------------------------------------------------------- /src/shared/acl-util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/shared/acl-util.h -------------------------------------------------------------------------------- /src/shared/bootspec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/shared/bootspec.c -------------------------------------------------------------------------------- /src/shared/bootspec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/shared/bootspec.h -------------------------------------------------------------------------------- /src/shared/bus-util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/shared/bus-util.c -------------------------------------------------------------------------------- /src/shared/bus-util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/shared/bus-util.h -------------------------------------------------------------------------------- /src/shared/dropin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/shared/dropin.c -------------------------------------------------------------------------------- /src/shared/dropin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/shared/dropin.h -------------------------------------------------------------------------------- /src/shared/efivars.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/shared/efivars.c -------------------------------------------------------------------------------- /src/shared/efivars.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/shared/efivars.h -------------------------------------------------------------------------------- /src/shared/fdset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/shared/fdset.c -------------------------------------------------------------------------------- /src/shared/fdset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/shared/fdset.h -------------------------------------------------------------------------------- /src/shared/gpt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/shared/gpt.h -------------------------------------------------------------------------------- /src/shared/ima-util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/shared/ima-util.c -------------------------------------------------------------------------------- /src/shared/ima-util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/shared/ima-util.h -------------------------------------------------------------------------------- /src/shared/initreq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/shared/initreq.h -------------------------------------------------------------------------------- /src/shared/install.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/shared/install.c -------------------------------------------------------------------------------- /src/shared/install.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/shared/install.h -------------------------------------------------------------------------------- /src/shared/nsflags.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/shared/nsflags.c -------------------------------------------------------------------------------- /src/shared/nsflags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/shared/nsflags.h -------------------------------------------------------------------------------- /src/shared/ptyfwd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/shared/ptyfwd.c -------------------------------------------------------------------------------- /src/shared/ptyfwd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/shared/ptyfwd.h -------------------------------------------------------------------------------- /src/shared/tests.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/shared/tests.c -------------------------------------------------------------------------------- /src/shared/tests.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/shared/tests.h -------------------------------------------------------------------------------- /src/shared/watchdog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/shared/watchdog.c -------------------------------------------------------------------------------- /src/shared/watchdog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/shared/watchdog.h -------------------------------------------------------------------------------- /src/sleep/sleep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/sleep/sleep.c -------------------------------------------------------------------------------- /src/sysctl/sysctl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/sysctl/sysctl.c -------------------------------------------------------------------------------- /src/systemd/sd-bus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/systemd/sd-bus.h -------------------------------------------------------------------------------- /src/systemd/sd-hwdb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/systemd/sd-hwdb.h -------------------------------------------------------------------------------- /src/systemd/sd-lldp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/systemd/sd-lldp.h -------------------------------------------------------------------------------- /src/systemd/sd-path.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/systemd/sd-path.h -------------------------------------------------------------------------------- /src/systemd/sd-radv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/systemd/sd-radv.h -------------------------------------------------------------------------------- /src/systemd/sd-utf8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/systemd/sd-utf8.h -------------------------------------------------------------------------------- /src/test/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/test/meson.build -------------------------------------------------------------------------------- /src/test/test-async.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/test/test-async.c -------------------------------------------------------------------------------- /src/test/test-bpf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/test/test-bpf.c -------------------------------------------------------------------------------- /src/test/test-btrfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/test/test-btrfs.c -------------------------------------------------------------------------------- /src/test/test-clock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/test/test-clock.c -------------------------------------------------------------------------------- /src/test/test-copy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/test/test-copy.c -------------------------------------------------------------------------------- /src/test/test-date.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/test/test-date.c -------------------------------------------------------------------------------- /src/test/test-fdset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/test/test-fdset.c -------------------------------------------------------------------------------- /src/test/test-hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/test/test-hash.c -------------------------------------------------------------------------------- /src/test/test-id128.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/test/test-id128.c -------------------------------------------------------------------------------- /src/test/test-ipcrm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/test/test-ipcrm.c -------------------------------------------------------------------------------- /src/test/test-list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/test/test-list.c -------------------------------------------------------------------------------- /src/test/test-log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/test/test-log.c -------------------------------------------------------------------------------- /src/test/test-ns.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/test/test-ns.c -------------------------------------------------------------------------------- /src/test/test-nss.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/test/test-nss.c -------------------------------------------------------------------------------- /src/test/test-path.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/test/test-path.c -------------------------------------------------------------------------------- /src/test/test-prioq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/test/test-prioq.c -------------------------------------------------------------------------------- /src/test/test-set.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/test/test-set.c -------------------------------------------------------------------------------- /src/test/test-sleep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/test/test-sleep.c -------------------------------------------------------------------------------- /src/test/test-strv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/test/test-strv.c -------------------------------------------------------------------------------- /src/test/test-udev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/test/test-udev.c -------------------------------------------------------------------------------- /src/test/test-utf8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/test/test-utf8.c -------------------------------------------------------------------------------- /src/test/test-util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/test/test-util.c -------------------------------------------------------------------------------- /src/test/test-verbs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/test/test-verbs.c -------------------------------------------------------------------------------- /src/test/test-xml.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/test/test-xml.c -------------------------------------------------------------------------------- /src/udev/.vimrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/udev/.vimrc -------------------------------------------------------------------------------- /src/udev/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/udev/meson.build -------------------------------------------------------------------------------- /src/udev/udev-ctrl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/udev/udev-ctrl.c -------------------------------------------------------------------------------- /src/udev/udev-event.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/udev/udev-event.c -------------------------------------------------------------------------------- /src/udev/udev-node.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/udev/udev-node.c -------------------------------------------------------------------------------- /src/udev/udev-rules.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/udev/udev-rules.c -------------------------------------------------------------------------------- /src/udev/udev-watch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/udev/udev-watch.c -------------------------------------------------------------------------------- /src/udev/udev.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/udev/udev.conf -------------------------------------------------------------------------------- /src/udev/udev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/udev/udev.h -------------------------------------------------------------------------------- /src/udev/udev.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/udev/udev.pc.in -------------------------------------------------------------------------------- /src/udev/udevadm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/udev/udevadm.c -------------------------------------------------------------------------------- /src/udev/udevd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/src/udev/udevd.c -------------------------------------------------------------------------------- /sysctl.d/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/sysctl.d/meson.build -------------------------------------------------------------------------------- /test/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/test/.gitignore -------------------------------------------------------------------------------- /test/README.testsuite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/test/README.testsuite -------------------------------------------------------------------------------- /test/TEST-02-CRYPTSETUP/Makefile: -------------------------------------------------------------------------------- 1 | ../TEST-01-BASIC/Makefile -------------------------------------------------------------------------------- /test/TEST-03-JOBS/Makefile: -------------------------------------------------------------------------------- 1 | ../TEST-01-BASIC/Makefile -------------------------------------------------------------------------------- /test/TEST-04-JOURNAL/Makefile: -------------------------------------------------------------------------------- 1 | ../TEST-01-BASIC/Makefile -------------------------------------------------------------------------------- /test/TEST-05-RLIMITS/Makefile: -------------------------------------------------------------------------------- 1 | ../TEST-01-BASIC/Makefile -------------------------------------------------------------------------------- /test/TEST-06-SELINUX/Makefile: -------------------------------------------------------------------------------- 1 | ../TEST-01-BASIC/Makefile -------------------------------------------------------------------------------- /test/TEST-07-ISSUE-1981/Makefile: -------------------------------------------------------------------------------- 1 | ../TEST-01-BASIC/Makefile -------------------------------------------------------------------------------- /test/TEST-08-ISSUE-2730/Makefile: -------------------------------------------------------------------------------- 1 | ../TEST-01-BASIC/Makefile -------------------------------------------------------------------------------- /test/TEST-09-ISSUE-2691/Makefile: -------------------------------------------------------------------------------- 1 | ../TEST-01-BASIC/Makefile -------------------------------------------------------------------------------- /test/TEST-10-ISSUE-2467/Makefile: -------------------------------------------------------------------------------- 1 | ../TEST-01-BASIC/Makefile -------------------------------------------------------------------------------- /test/TEST-11-ISSUE-3166/Makefile: -------------------------------------------------------------------------------- 1 | ../TEST-01-BASIC/Makefile -------------------------------------------------------------------------------- /test/TEST-12-ISSUE-3171/Makefile: -------------------------------------------------------------------------------- 1 | ../TEST-01-BASIC/Makefile -------------------------------------------------------------------------------- /test/TEST-14-MACHINE-ID/Makefile: -------------------------------------------------------------------------------- 1 | ../TEST-01-BASIC/Makefile -------------------------------------------------------------------------------- /test/TEST-15-DROPIN/Makefile: -------------------------------------------------------------------------------- 1 | ../TEST-01-BASIC/Makefile -------------------------------------------------------------------------------- /test/TEST-16-EXTEND-TIMEOUT/Makefile: -------------------------------------------------------------------------------- 1 | ../TEST-01-BASIC/Makefile -------------------------------------------------------------------------------- /test/TEST-17-UDEV-WANTS/Makefile: -------------------------------------------------------------------------------- 1 | ../TEST-01-BASIC/Makefile -------------------------------------------------------------------------------- /test/TEST-18-FAILUREACTION/Makefile: -------------------------------------------------------------------------------- 1 | ../TEST-01-BASIC/Makefile -------------------------------------------------------------------------------- /test/TEST-19-DELEGATE/Makefile: -------------------------------------------------------------------------------- 1 | ../TEST-01-BASIC/Makefile -------------------------------------------------------------------------------- /test/TEST-20-MAINPIDGAMES/Makefile: -------------------------------------------------------------------------------- 1 | ../TEST-01-BASIC/Makefile -------------------------------------------------------------------------------- /test/TEST-21-SYSUSERS/Makefile: -------------------------------------------------------------------------------- 1 | ../TEST-01-BASIC/Makefile -------------------------------------------------------------------------------- /test/TEST-21-SYSUSERS/test-10.expected-group: -------------------------------------------------------------------------------- 1 | u1:x:300:u2 2 | u2:x:SYSTEM_UID_MAX: 3 | -------------------------------------------------------------------------------- /test/TEST-21-SYSUSERS/test-12.expected-group: -------------------------------------------------------------------------------- 1 | root:x:0: 2 | systemd-coredump:x:1: 3 | -------------------------------------------------------------------------------- /test/TEST-21-SYSUSERS/test-12.initial-group: -------------------------------------------------------------------------------- 1 | root:x:0: 2 | -------------------------------------------------------------------------------- /test/TEST-21-SYSUSERS/test-4.expected-group: -------------------------------------------------------------------------------- 1 | xxx:x:310: 2 | -------------------------------------------------------------------------------- /test/TEST-21-SYSUSERS/test-8.expected-group: -------------------------------------------------------------------------------- 1 | groupname:x:300: 2 | -------------------------------------------------------------------------------- /test/TEST-21-SYSUSERS/test-8.expected-passwd: -------------------------------------------------------------------------------- 1 | username:x:SYSTEM_UID_MAX:300::/:/sbin/nologin 2 | -------------------------------------------------------------------------------- /test/TEST-21-SYSUSERS/test-9.expected-group: -------------------------------------------------------------------------------- 1 | user1:x:300: 2 | -------------------------------------------------------------------------------- /test/TEST-22-TMPFILES/Makefile: -------------------------------------------------------------------------------- 1 | ../TEST-01-BASIC/Makefile -------------------------------------------------------------------------------- /test/TEST-23-TYPE-EXEC/Makefile: -------------------------------------------------------------------------------- 1 | ../TEST-01-BASIC/Makefile -------------------------------------------------------------------------------- /test/TEST-24-UNIT-TESTS/Makefile: -------------------------------------------------------------------------------- 1 | ../TEST-01-BASIC/Makefile -------------------------------------------------------------------------------- /test/TEST-27-STDOUTFILE/Makefile: -------------------------------------------------------------------------------- 1 | ../TEST-01-BASIC/Makefile -------------------------------------------------------------------------------- /test/TEST-35-LOGIN/Makefile: -------------------------------------------------------------------------------- 1 | ../TEST-01-BASIC/Makefile -------------------------------------------------------------------------------- /test/TEST-36-NUMAPOLICY/Makefile: -------------------------------------------------------------------------------- 1 | ../TEST-01-BASIC/Makefile -------------------------------------------------------------------------------- /test/TEST-38-FREEZER/Makefile: -------------------------------------------------------------------------------- 1 | ../TEST-01-BASIC/Makefile -------------------------------------------------------------------------------- /test/TEST-47-ISSUE-14566/Makefile: -------------------------------------------------------------------------------- 1 | ../TEST-01-BASIC/Makefile -------------------------------------------------------------------------------- /test/TEST-51-ISSUE-16115/Makefile: -------------------------------------------------------------------------------- 1 | ../TEST-01-BASIC/Makefile -------------------------------------------------------------------------------- /test/TEST-53-TIMER/Makefile: -------------------------------------------------------------------------------- 1 | ../TEST-01-BASIC/Makefile -------------------------------------------------------------------------------- /test/TEST-60-MOUNT-RATELIMIT/Makefile: -------------------------------------------------------------------------------- 1 | ../TEST-01-BASIC/Makefile -------------------------------------------------------------------------------- /test/TEST-63-ISSUE-17433/Makefile: -------------------------------------------------------------------------------- 1 | ../TEST-01-BASIC/Makefile -------------------------------------------------------------------------------- /test/TEST-74-AUX-UTILS/Makefile: -------------------------------------------------------------------------------- 1 | ../TEST-01-BASIC/Makefile -------------------------------------------------------------------------------- /test/TEST-81-GENERATORS/Makefile: -------------------------------------------------------------------------------- 1 | ../TEST-01-BASIC/Makefile -------------------------------------------------------------------------------- /test/a.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/test/a.service -------------------------------------------------------------------------------- /test/b.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/test/b.service -------------------------------------------------------------------------------- /test/basic.target: -------------------------------------------------------------------------------- 1 | ../units/basic.target -------------------------------------------------------------------------------- /test/c.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/test/c.service -------------------------------------------------------------------------------- /test/d.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/test/d.service -------------------------------------------------------------------------------- /test/daughter.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/test/daughter.service -------------------------------------------------------------------------------- /test/dml.slice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/test/dml.slice -------------------------------------------------------------------------------- /test/e.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/test/e.service -------------------------------------------------------------------------------- /test/end.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/test/end.service -------------------------------------------------------------------------------- /test/f.service: -------------------------------------------------------------------------------- 1 | [Unit] 2 | Description=F 3 | 4 | [Service] 5 | ExecStart=/bin/true 6 | -------------------------------------------------------------------------------- /test/fuzz/fuzz-journald-kmsg/basic: -------------------------------------------------------------------------------- 1 | 29,456,292891883,-;systemd[1]: Reexecuting. 2 | -------------------------------------------------------------------------------- /test/fuzz/fuzz-journald-kmsg/dev-null: -------------------------------------------------------------------------------- 1 | 12,460,1322026586,-;hey 2 | DEVICE=c1:3 3 | -------------------------------------------------------------------------------- /test/fuzz/fuzz-journald-kmsg/loopback: -------------------------------------------------------------------------------- 1 | 12,460,1322026586,-;hey 2 | DEVICE=n1 3 | -------------------------------------------------------------------------------- /test/fuzz/fuzz-journald-kmsg/subsystem-loopback: -------------------------------------------------------------------------------- 1 | 12,460,1322026586,-;hey 2 | DEVICE=+net:lo 3 | -------------------------------------------------------------------------------- /test/fuzz/fuzz-journald-syslog/github-9795: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fuzz/fuzz-journald-syslog/github-9820: -------------------------------------------------------------------------------- 1 | <13>Aug 4 04:08:03 something-is-about-to-go-wrong: -------------------------------------------------------------------------------- /test/fuzz/fuzz-journald-syslog/github-9827: -------------------------------------------------------------------------------- 1 | <> -------------------------------------------------------------------------------- /test/fuzz/fuzz-journald-syslog/github-9829: -------------------------------------------------------------------------------- 1 | : -------------------------------------------------------------------------------- /test/fuzz/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/test/fuzz/meson.build -------------------------------------------------------------------------------- /test/g.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/test/g.service -------------------------------------------------------------------------------- /test/h.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/test/h.service -------------------------------------------------------------------------------- /test/hello.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/test/hello.service -------------------------------------------------------------------------------- /test/hwdb-test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/test/hwdb-test.sh -------------------------------------------------------------------------------- /test/hwdb/10-bad.hwdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/test/hwdb/10-bad.hwdb -------------------------------------------------------------------------------- /test/loopy.service: -------------------------------------------------------------------------------- 1 | [Service] 2 | ExecStart=/bin/true 3 | -------------------------------------------------------------------------------- /test/loopy2.service: -------------------------------------------------------------------------------- 1 | loopy.service -------------------------------------------------------------------------------- /test/loopy3.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/test/loopy3.service -------------------------------------------------------------------------------- /test/loopy4.service: -------------------------------------------------------------------------------- 1 | loopy3.service -------------------------------------------------------------------------------- /test/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/test/meson.build -------------------------------------------------------------------------------- /test/mocks/fsck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/test/mocks/fsck -------------------------------------------------------------------------------- /test/networkd-test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/test/networkd-test.py -------------------------------------------------------------------------------- /test/parent.slice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/test/parent.slice -------------------------------------------------------------------------------- /test/shutdown.target: -------------------------------------------------------------------------------- 1 | ../units/shutdown.target -------------------------------------------------------------------------------- /test/sleep.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/test/sleep.service -------------------------------------------------------------------------------- /test/sockets.target: -------------------------------------------------------------------------------- 1 | ../units/sockets.target -------------------------------------------------------------------------------- /test/son.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/test/son.service -------------------------------------------------------------------------------- /test/splash.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/test/splash.bmp -------------------------------------------------------------------------------- /test/sys-script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/test/sys-script.py -------------------------------------------------------------------------------- /test/sysinit.target: -------------------------------------------------------------------------------- 1 | ../units/sysinit.target -------------------------------------------------------------------------------- /test/test-functions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/test/test-functions -------------------------------------------------------------------------------- /test/test-path/basic.target: -------------------------------------------------------------------------------- 1 | ../../units/basic.target -------------------------------------------------------------------------------- /test/test-path/path-changed.service: -------------------------------------------------------------------------------- 1 | path-service.service -------------------------------------------------------------------------------- /test/test-path/path-directorynotempty.service: -------------------------------------------------------------------------------- 1 | path-service.service -------------------------------------------------------------------------------- /test/test-path/path-exists.service: -------------------------------------------------------------------------------- 1 | path-service.service -------------------------------------------------------------------------------- /test/test-path/path-existsglob.service: -------------------------------------------------------------------------------- 1 | path-service.service -------------------------------------------------------------------------------- /test/test-path/path-makedirectory.service: -------------------------------------------------------------------------------- 1 | path-service.service -------------------------------------------------------------------------------- /test/test-path/path-modified.service: -------------------------------------------------------------------------------- 1 | path-service.service -------------------------------------------------------------------------------- /test/test-path/paths.target: -------------------------------------------------------------------------------- 1 | ../../units/paths.target -------------------------------------------------------------------------------- /test/test-path/sysinit.target: -------------------------------------------------------------------------------- 1 | ../../units/sysinit.target -------------------------------------------------------------------------------- /test/test-umount/empty.mountinfo: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/testsuite.target: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/test/testsuite.target -------------------------------------------------------------------------------- /test/timers.target: -------------------------------------------------------------------------------- 1 | ../units/timers.target -------------------------------------------------------------------------------- /test/udev-test.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/test/udev-test.pl -------------------------------------------------------------------------------- /test/unit-.service.d/10-override.conf: -------------------------------------------------------------------------------- 1 | [Unit] 2 | Description=override0 3 | -------------------------------------------------------------------------------- /test/unit-with-.service.d/20-override.conf: -------------------------------------------------------------------------------- 1 | [Unit] 2 | Documentation=man:override1 3 | -------------------------------------------------------------------------------- /test/unit-with-multiple-.service.d/20-override.conf: -------------------------------------------------------------------------------- 1 | [Unit] 2 | Documentation=man:override2 3 | -------------------------------------------------------------------------------- /test/unit-with-multiple-.service.d/30-override.conf: -------------------------------------------------------------------------------- 1 | [Unit] 2 | Documentation=man:override3 3 | -------------------------------------------------------------------------------- /test/unit-with-multiple-dashes.service.d/10-override.conf: -------------------------------------------------------------------------------- 1 | [Unit] 2 | Description=override4 3 | -------------------------------------------------------------------------------- /tmpfiles.d/home.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/tmpfiles.d/home.conf -------------------------------------------------------------------------------- /tmpfiles.d/tmp.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/tmpfiles.d/tmp.conf -------------------------------------------------------------------------------- /tmpfiles.d/x11.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/tmpfiles.d/x11.conf -------------------------------------------------------------------------------- /tools/add-git-hook.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/tools/add-git-hook.sh -------------------------------------------------------------------------------- /tools/coverity.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/tools/coverity.sh -------------------------------------------------------------------------------- /tools/find-tabs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/tools/find-tabs.sh -------------------------------------------------------------------------------- /tools/meson-build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/tools/meson-build.sh -------------------------------------------------------------------------------- /tools/meson-link-test.c: -------------------------------------------------------------------------------- 1 | int main(void) {return 0;} 2 | -------------------------------------------------------------------------------- /tools/oss-fuzz.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/tools/oss-fuzz.sh -------------------------------------------------------------------------------- /tools/xml_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/tools/xml_helper.py -------------------------------------------------------------------------------- /travis-ci/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/travis-ci/Dockerfile -------------------------------------------------------------------------------- /travis-ci/requirements.txt: -------------------------------------------------------------------------------- 1 | dnf-plugins-core 2 | meson 3 | ninja-build 4 | python 5 | -------------------------------------------------------------------------------- /units/basic.target: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/units/basic.target -------------------------------------------------------------------------------- /units/busnames.target: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/units/busnames.target -------------------------------------------------------------------------------- /units/exit.target: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/units/exit.target -------------------------------------------------------------------------------- /units/final.target: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/units/final.target -------------------------------------------------------------------------------- /units/getty.target: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/units/getty.target -------------------------------------------------------------------------------- /units/halt.target: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/units/halt.target -------------------------------------------------------------------------------- /units/initrd.target: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/units/initrd.target -------------------------------------------------------------------------------- /units/kexec.target: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/units/kexec.target -------------------------------------------------------------------------------- /units/local-fs.target: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/units/local-fs.target -------------------------------------------------------------------------------- /units/machine.slice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/units/machine.slice -------------------------------------------------------------------------------- /units/machines.target: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/units/machines.target -------------------------------------------------------------------------------- /units/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/units/meson.build -------------------------------------------------------------------------------- /units/network.target: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/units/network.target -------------------------------------------------------------------------------- /units/paths.target: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/units/paths.target -------------------------------------------------------------------------------- /units/poweroff.target: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/units/poweroff.target -------------------------------------------------------------------------------- /units/printer.target: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/units/printer.target -------------------------------------------------------------------------------- /units/reboot.target: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/units/reboot.target -------------------------------------------------------------------------------- /units/rescue.target: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/units/rescue.target -------------------------------------------------------------------------------- /units/rpcbind.target: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/units/rpcbind.target -------------------------------------------------------------------------------- /units/shutdown.target: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/units/shutdown.target -------------------------------------------------------------------------------- /units/sigpwr.target: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/units/sigpwr.target -------------------------------------------------------------------------------- /units/sleep.target: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/units/sleep.target -------------------------------------------------------------------------------- /units/slices.target: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/units/slices.target -------------------------------------------------------------------------------- /units/sockets.target: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/units/sockets.target -------------------------------------------------------------------------------- /units/sound.target: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/units/sound.target -------------------------------------------------------------------------------- /units/suspend.target: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/units/suspend.target -------------------------------------------------------------------------------- /units/swap.target: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/units/swap.target -------------------------------------------------------------------------------- /units/sysinit.target: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/units/sysinit.target -------------------------------------------------------------------------------- /units/syslog.socket: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/units/syslog.socket -------------------------------------------------------------------------------- /units/timers.target: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/units/timers.target -------------------------------------------------------------------------------- /units/tmp.mount: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/units/tmp.mount -------------------------------------------------------------------------------- /units/umount.target: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/units/umount.target -------------------------------------------------------------------------------- /units/user.slice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/units/user.slice -------------------------------------------------------------------------------- /units/user/bluetooth.target: -------------------------------------------------------------------------------- 1 | ../bluetooth.target -------------------------------------------------------------------------------- /units/user/busnames.target: -------------------------------------------------------------------------------- 1 | ../busnames.target -------------------------------------------------------------------------------- /units/user/paths.target: -------------------------------------------------------------------------------- 1 | ../paths.target -------------------------------------------------------------------------------- /units/user/printer.target: -------------------------------------------------------------------------------- 1 | ../printer.target -------------------------------------------------------------------------------- /units/user/shutdown.target: -------------------------------------------------------------------------------- 1 | ../shutdown.target -------------------------------------------------------------------------------- /units/user/smartcard.target: -------------------------------------------------------------------------------- 1 | ../smartcard.target -------------------------------------------------------------------------------- /units/user/sockets.target: -------------------------------------------------------------------------------- 1 | ../sockets.target -------------------------------------------------------------------------------- /units/user/sound.target: -------------------------------------------------------------------------------- 1 | ../sound.target -------------------------------------------------------------------------------- /units/user/timers.target: -------------------------------------------------------------------------------- 1 | ../timers.target -------------------------------------------------------------------------------- /zanata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers/systemd-rhel8/HEAD/zanata.xml --------------------------------------------------------------------------------