/snap/core22/2437/usr/lib/systemd
NameSizeModeActions
boot/-0755rm
bootchart.conf.d/-0755rm
catalog/-0755rm
network/-0755rm
ntp-units.d/-0755rm
system/-0755rm
system-generators/-0755rm
system-preset/-0755rm
system-shutdown/-0755rm
system-sleep/-0755rm
user/-0755rm
user-environment-generators/-0755rm
user-generators/-0755rm
user-preset/-0755rm
libsystemd-shared-249.so28402800644editdlrm
resolv.conf7100644editdlrm
systemd18499920755editdlrm
systemd-ac-power147120755editdlrm
systemd-backlight310160755editdlrm
systemd-binfmt188080755editdlrm
systemd-bless-boot312000755editdlrm
systemd-boot-check-no-failures147120755editdlrm
systemd-bootchart1008720755editdlrm
systemd-bootchart-poststop.sh8970755editdlrm
systemd-cgroups-agent146320755editdlrm
systemd-cryptsetup599520755editdlrm
systemd-fsck269280755editdlrm
systemd-fsckd310960755editdlrm
systemd-growfs229040755editdlrm
systemd-hibernate-resume146320755editdlrm
systemd-hostnamed434080755editdlrm
systemd-initctl229040755editdlrm
systemd-journald1621760755editdlrm
systemd-localed516000755editdlrm
systemd-logind2647120755editdlrm
systemd-makefs146320755editdlrm
systemd-modules-load189120755editdlrm
systemd-network-generator351920755editdlrm
systemd-networkd15139360755editdlrm
systemd-networkd-wait-online353280755editdlrm
systemd-pstore229280755editdlrm
systemd-quotacheck147120755editdlrm
systemd-random-seed228240755editdlrm
systemd-remount-fs146320755editdlrm
systemd-reply-password146320755editdlrm
systemd-resolved4899040755editdlrm
systemd-rfkill229040755editdlrm
systemd-shutdown474880755editdlrm
systemd-sleep270000755editdlrm
systemd-socket-proxyd311040755editdlrm
systemd-sulogin-shell146320755editdlrm
systemd-sysctl230080755editdlrm
systemd-sysv-install13600755editdlrm
systemd-time-wait-sync146320755editdlrm
systemd-timedated475040755editdlrm
systemd-timesyncd555200755editdlrm
systemd-udevd11318560755editdlrm
systemd-update-utmp188080755editdlrm
systemd-user-runtime-dir228240755editdlrm
systemd-user-sessions146320755editdlrm
systemd-veritysetup229360755editdlrm
systemd-volatile-root187280755editdlrm
systemd-xdg-autostart-condition146320755editdlrm
Edit: /snap/core22/2437/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