#!/sbin/runscript # # readahead: Prereads programs required for startup into memory # # chkconfig: 5 96 99 # description: This service causes the programs used during startup \ # to be loaded into memory before they are needed,\ # thus improving startup performance # # depend() { need checkroot } start() { ebegin "Starting background readahead " /usr/sbin/readahead `cat /etc/readahead.early.files` & eend $? } stop() { /bin/true }