/usr/lib/cruft/explain/systemd-sysv is in cruft-common 0.9.34.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 | #!/bin/sh
set -e
test -d /var/lib/systemd/timers/ || exit 0
for f in $(cd /var/lib/systemd/timers/ ; echo *.timer)
do
unit=${f#stamp-}
# known cases already handled by filters-unex/
case "$unit" in
apt-daily.timer|certbot.timer|cron-daily.timer|cron-weekly.timer|cron-monthly.timer)
continue
;;
esac
if [ "$(systemctl show $unit -p Persistent)" = "Persistent=yes" ]
then
echo /var/lib/systemd/timers/$f
fi
done
|