/etc/cron.monthly/readahead-monthly is in readahead-fedora 2:1.5.6-5.
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 | #!/bin/sh
[ -x "/sbin/readahead-collector" ] || exit 0
[ ! -f /etc/default/readahead-fedora ] || . /etc/default/readahead-fedora
if [ "${READAHEAD_COLLECT:-yes}" = "yes" ] ; then
touch /.readahead_collect
fi
|