diff options
author | Bill Nottingham <notting@redhat.com> | 2003-03-28 22:47:45 +0000 |
---|---|---|
committer | Bill Nottingham <notting@redhat.com> | 2003-03-28 22:47:45 +0000 |
commit | 7e77c0f5562c64f80d531bf475e55d705c8d19eb (patch) | |
tree | 68ec302f11c697929ad8bdf431843737146f316d | |
parent | 35d6a4bfc5a1e38a04f89bed0d0b2f9c2cfe1dbb (diff) | |
download | initscripts-7e77c0f5562c64f80d531bf475e55d705c8d19eb.tar initscripts-7e77c0f5562c64f80d531bf475e55d705c8d19eb.tar.gz initscripts-7e77c0f5562c64f80d531bf475e55d705c8d19eb.tar.bz2 initscripts-7e77c0f5562c64f80d531bf475e55d705c8d19eb.tar.xz initscripts-7e77c0f5562c64f80d531bf475e55d705c8d19eb.zip |
fix rc.sysinit for 2.5
-rwxr-xr-x | rc.d/rc.sysinit | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rc.d/rc.sysinit b/rc.d/rc.sysinit index 8f89960f..5005b24e 100755 --- a/rc.d/rc.sysinit +++ b/rc.d/rc.sysinit @@ -359,7 +359,7 @@ if [ -n "$IN_INITLOG" ]; then IN_INITLOG= fi -if ! LC_ALL=C grep -iq nomodules /proc/cmdline 2>/dev/null && [ -f /proc/ksyms ]; then +if ! LC_ALL=C grep -iq nomodules /proc/cmdline 2>/dev/null && [ -f /proc/modules ]; then USEMODULES=y fi |