#!/sbin/runscript # Copyright 2005 Robin H. Johnson # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/infrastructure/readahead-list/contrib/init/gentoo/init.d-readahead-list-early,v 1.1 2005/04/25 21:39:42 robbat2 Exp $ depend() { need root fsck # this should start as early as possible # we can't do 'before *' as that breaks it before readahead-list termencoding } start() { # force reading source /etc/conf.d/readahead-list f="${READAHEAD_LIST_call_early}" ebegin "readahead(2): ${f}" /sbin/readahead-list ${f} eend $? } # vim: ts=4 sw=4