You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/sys-apps/readahead-list/files/init.d-readahead-list-early

23 lines
516 B

#!/sbin/openrc-run
# Copyright 2005 Robin H. Johnson <robbat2@orbis-terrarum.net>
# Distributed under the terms of the GNU General Public License v2
depend() {
after checkroot
# this should start as early as possible
# we can't do 'before *' as that breaks it
before hostname modules domainname crypto-loop checkfs localmount
}
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