/
usr
/
lib
/
systemd
/
/usr/lib/systemd
mkdir
upload
Name
Size
Mode
Actions
boot/
-
0755
rm
catalog/
-
0755
rm
network/
-
0755
rm
ntp-units.d/
-
0755
rm
system/
-
0755
rm
system-generators/
-
0755
rm
system-preset/
-
0755
rm
system-shutdown/
-
0755
rm
system-sleep/
-
0755
rm
user/
-
0755
rm
user-environment-generators/
-
0755
rm
user-generators/
-
0755
rm
user-preset/
-
0755
rm
libsystemd-shared.abignore
100
0644
edit
dl
rm
purge-nobody-user
2355
0755
edit
dl
rm
resolv.conf
710
0644
edit
dl
rm
systemd
98040
0755
edit
dl
rm
systemd-ac-power
15392
0755
edit
dl
rm
systemd-backlight
36216
0755
edit
dl
rm
systemd-binfmt
23872
0755
edit
dl
rm
systemd-bless-boot
32360
0755
edit
dl
rm
systemd-boot-check-no-failures
15672
0755
edit
dl
rm
systemd-cgroups-agent
15608
0755
edit
dl
rm
systemd-coredump
73448
0755
edit
dl
rm
systemd-cryptsetup
94680
0755
edit
dl
rm
systemd-export
44600
0755
edit
dl
rm
systemd-fsck
32064
0755
edit
dl
rm
systemd-growfs
23816
0755
edit
dl
rm
systemd-hibernate-resume
15416
0755
edit
dl
rm
systemd-hostnamed
53152
0755
edit
dl
rm
systemd-initctl
23896
0755
edit
dl
rm
systemd-integritysetup
24080
0755
edit
dl
rm
systemd-journald
185504
0755
edit
dl
rm
systemd-localed
52928
0755
edit
dl
rm
systemd-logind
302808
0755
edit
dl
rm
systemd-makefs
15616
0755
edit
dl
rm
systemd-measure
53176
0755
edit
dl
rm
systemd-modules-load
24104
0755
edit
dl
rm
systemd-network-generator
44720
0755
edit
dl
rm
systemd-pcrphase
32296
0755
edit
dl
rm
systemd-pstore
23976
0755
edit
dl
rm
systemd-quotacheck
15440
0755
edit
dl
rm
systemd-random-seed
27944
0755
edit
dl
rm
systemd-remount-fs
19744
0755
edit
dl
rm
systemd-reply-password
15640
0755
edit
dl
rm
systemd-rfkill
23912
0755
edit
dl
rm
systemd-shutdown
52744
0755
edit
dl
rm
systemd-sleep
32120
0755
edit
dl
rm
systemd-socket-proxyd
32248
0755
edit
dl
rm
systemd-sulogin-shell
19808
0755
edit
dl
rm
systemd-sysctl
28216
0755
edit
dl
rm
systemd-sysroot-fstab-check
57520
0755
edit
dl
rm
systemd-sysupdate
127688
0755
edit
dl
rm
systemd-sysv-install
44832
0755
edit
dl
rm
systemd-timedated
48776
0755
edit
dl
rm
systemd-udevd
601960
0755
edit
dl
rm
systemd-update-done
15640
0755
edit
dl
rm
systemd-update-helper
3853
0755
edit
dl
rm
systemd-update-utmp
23912
0755
edit
dl
rm
systemd-user-runtime-dir
23864
0755
edit
dl
rm
systemd-user-sessions
15416
0755
edit
dl
rm
systemd-vconsole-setup
19768
0755
edit
dl
rm
systemd-veritysetup
24032
0755
edit
dl
rm
systemd-volatile-root
23856
0755
edit
dl
rm
systemd-xdg-autostart-condition
15664
0755
edit
dl
rm
Edit:
/usr/lib/systemd/systemd-update-helper
(3853B)
#!/usr/bin/bash # SPDX-License-Identifier: LGPL-2.1-or-later set -eu set -o pipefail command="${1:?}" shift command -v systemctl >/dev/null || exit 0 case "$command" in install-system-units) systemctl --no-reload preset "$@" ;; install-user-units) systemctl --no-reload preset --global "$@" ;; remove-system-units) if [ -d /run/systemd/system ]; then systemctl --no-reload disable --now --no-warn "$@" else systemctl --no-reload disable --no-warn "$@" fi ;; remove-user-units) systemctl --global disable --no-warn "$@" [ -d /run/systemd/system ] || exit 0 users=$(systemctl list-units 'user@*' --legend=no | sed -n -r 's/.*user@([0-9]+).service.*/\1/p') for user in $users; do SYSTEMD_BUS_TIMEOUT=15s \ systemctl --user -M "$user@" disable --now --no-warn "$@" & done wait ;; mark-restart-system-units) [ -d /run/systemd/system ] || exit 0 for unit in "$@"; do systemctl set-property "$unit" Markers=+needs-restart & done wait ;; mark-reload-system-units) [ -d /run/systemd/system ] || exit 0 for unit in "$@"; do systemctl set-property "$unit" Markers=+needs-reload & done wait ;; mark-restart-user-units) [ -d /run/systemd/system ] || exit 0 users=$(systemctl list-units 'user@*' --legend=no | sed -n -r 's/.*user@([0-9]+).service.*/\1/p') for user in $users; do for unit in "$@"; do SYSTEMD_BUS_TIMEOUT=15s \ systemctl --user -M "$user@" set-property "$unit" Markers=+needs-restart & done done wait ;; mark-reload-user-units) [ -d /run/systemd/system ] || exit 0 users=$(systemctl list-units 'user@*' --legend=no | sed -n -r 's/.*user@([0-9]+).service.*/\1/p') for user in $users; do for unit in "$@"; do SYSTEMD_BUS_TIMEOUT=15s \ systemctl --user -M "$user@" set-property "$unit" Markers=+needs-reload & done done wait ;; system-reload-restart|system-reload|system-restart) if [ -n "$*" ]; then echo "Unexpected arguments for '$command': $*" exit 2 fi [ -d /run/systemd/system ] || exit 0 if [[ "$command" =~ reload ]]; then systemctl daemon-reload fi if [[ "$command" =~ restart ]]; then systemctl reload-or-restart --marked fi ;; user-reload-restart|user-reload|user-restart|user-reexec) if [ -n "$*" ]; then echo "Unexpected arguments for '$command': $*" exit 2 fi [ -d /run/systemd/system ] || exit 0 users=$(systemctl list-units 'user@*' --legend=no | sed -n -r 's/.*user@([0-9]+).service.*/\1/p') if [[ "$command" =~ reexec ]]; then for user in $users; do SYSTEMD_BUS_TIMEOUT=15s \ systemctl --user -M "$user@" daemon-reexec & done wait fi if [[ "$command" =~ reload ]]; then for user in $users; do SYSTEMD_BUS_TIMEOUT=15s \ systemctl --user -M "$user@" daemon-reload & done wait fi if [[ "$command" =~ restart ]]; then for user in $users; do SYSTEMD_BUS_TIMEOUT=15s \ systemctl --user -M "$user@" reload-or-restart --marked & done wait fi ;; *) echo "Unknown verb '$command'" exit 3 ;; esac
Save
cmd:
run