/
snap
/
core24
/
1643
/
usr
/
lib
/
systemd
/
/snap/core24/1643/usr/lib/systemd
mkdir
upload
Name
Size
Mode
Actions
bootchart.conf.d/
-
0755
rm
catalog/
-
0755
rm
journald.conf.d/
-
0755
rm
network/
-
0755
rm
ntp-units.d/
-
0755
rm
repart/
-
0755
rm
system/
-
0755
rm
system-generators/
-
0755
rm
system-preset/
-
0755
rm
user/
-
0755
rm
user-environment-generators/
-
0755
rm
user-generators/
-
0755
rm
user-preset/
-
0755
rm
resolv.conf
710
0644
edit
dl
rm
systemd
100816
0755
edit
dl
rm
systemd-backlight
35272
0755
edit
dl
rm
systemd-battery-check
18888
0755
edit
dl
rm
systemd-binfmt
22984
0755
edit
dl
rm
systemd-boot-check-no-failures
14792
0755
edit
dl
rm
systemd-bootchart
100872
0755
edit
dl
rm
systemd-bootchart-poststop.sh
897
0755
edit
dl
rm
systemd-bsod
22984
0755
edit
dl
rm
systemd-cgroups-agent
14712
0755
edit
dl
rm
systemd-coredump
84488
0755
edit
dl
rm
systemd-cryptsetup
80840
0755
edit
dl
rm
systemd-executor
137792
0755
edit
dl
rm
systemd-fsck
27008
0755
edit
dl
rm
systemd-fsckd
27080
0755
edit
dl
rm
systemd-growfs
22984
0755
edit
dl
rm
systemd-hibernate-resume
23104
0755
edit
dl
rm
systemd-hostnamed
47584
0755
edit
dl
rm
systemd-initctl
22984
0755
edit
dl
rm
systemd-integritysetup
23056
0755
edit
dl
rm
systemd-journald
193664
0755
edit
dl
rm
systemd-localed
55776
0755
edit
dl
rm
systemd-logind
285264
0755
edit
dl
rm
systemd-makefs
14712
0755
edit
dl
rm
systemd-measure
47880
0755
edit
dl
rm
systemd-modules-load
19008
0755
edit
dl
rm
systemd-network-generator
43464
0755
edit
dl
rm
systemd-networkd
1669864
0755
edit
dl
rm
systemd-networkd-wait-online
39536
0755
edit
dl
rm
systemd-pcrextend
27272
0755
edit
dl
rm
systemd-pcrlock
137928
0755
edit
dl
rm
systemd-pstore
23008
0755
edit
dl
rm
systemd-quotacheck
14792
0755
edit
dl
rm
systemd-random-seed
27080
0755
edit
dl
rm
systemd-remount-fs
18888
0755
edit
dl
rm
systemd-reply-password
14712
0755
edit
dl
rm
systemd-resolved
535048
0755
edit
dl
rm
systemd-rfkill
22984
0755
edit
dl
rm
systemd-shutdown
55760
0755
edit
dl
rm
systemd-sleep
47560
0755
edit
dl
rm
systemd-socket-proxyd
31184
0755
edit
dl
rm
systemd-storagetm
51808
0755
edit
dl
rm
systemd-sulogin-shell
18808
0755
edit
dl
rm
systemd-sysctl
23104
0755
edit
dl
rm
systemd-sysroot-fstab-check
56072
0755
edit
dl
rm
systemd-sysupdate
117592
0755
edit
dl
rm
systemd-sysv-install
1360
0755
edit
dl
rm
systemd-time-wait-sync
18808
0755
edit
dl
rm
systemd-timedated
43488
0755
edit
dl
rm
systemd-timesyncd
59688
0755
edit
dl
rm
systemd-udevd
1443632
0755
edit
dl
rm
systemd-update-done
14712
0755
edit
dl
rm
systemd-update-utmp
22984
0755
edit
dl
rm
systemd-user-runtime-dir
22904
0755
edit
dl
rm
systemd-user-sessions
14712
0755
edit
dl
rm
systemd-veritysetup
27304
0755
edit
dl
rm
systemd-volatile-root
22904
0755
edit
dl
rm
systemd-xdg-autostart-condition
14712
0755
edit
dl
rm
Edit:
/snap/core24/1643/usr/lib/systemd/systemd-bootchart-poststop.sh
(897B)
#!/bin/sh set -eu modeenv=/run/mnt/data/system-data/var/lib/snapd/modeenv mode="$(/usr/libexec/core/get-mode mode "${modeenv}")" || mode="unknown" case "${mode}" in install|recover|factory-reset) save_dir=/run/mnt/ubuntu-data/system-data/var/log/debug ;; *) save_dir=/run/mnt/data/system-data/var/log/debug ;; esac next_num=1 for boot in "${save_dir}"/boot*; do if [ -d "${boot}" ]; then base="$(basename "${boot}")" num="${base#boot}" if [ "${num}" -ge "${next_num}" ]; then next_num="$((${num}+1))" fi fi done next_dir="${save_dir}/boot${next_num}" mkdir -p "${next_dir}" mv /run/log/base/*.svg "${next_dir}/" for initrd_file in /run/log/*.svg; do if [ -f "${initrd_file}" ]; then base="$(basename "${initrd_file}")" mv "${initrd_file}" "${next_dir}/initrd-${base}" fi done
Save
cmd:
run