aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPreston Brown <pbrown@redhat.com>2000-06-08 21:46:06 +0000
committerPreston Brown <pbrown@redhat.com>2000-06-08 21:46:06 +0000
commit4ac01f8771d8a62691874d9207a6aeb1076bbaa2 (patch)
tree6f4f8a9bce91f3d9c4c012a07b6c2ad10ced4ba3
parent7d8526be4c4faa999b2c57b3b4e03d0fbf92b955 (diff)
downloadinitscripts-4ac01f8771d8a62691874d9207a6aeb1076bbaa2.tar
initscripts-4ac01f8771d8a62691874d9207a6aeb1076bbaa2.tar.gz
initscripts-4ac01f8771d8a62691874d9207a6aeb1076bbaa2.tar.bz2
initscripts-4ac01f8771d8a62691874d9207a6aeb1076bbaa2.tar.xz
initscripts-4ac01f8771d8a62691874d9207a6aeb1076bbaa2.zip
use depmod -A, not depmod -a.
-rwxr-xr-xrc.d/rc.sysinit6
1 files changed, 3 insertions, 3 deletions
diff --git a/rc.d/rc.sysinit b/rc.d/rc.sysinit
index b936560e..fb7c86e8 100755
--- a/rc.d/rc.sysinit
+++ b/rc.d/rc.sysinit
@@ -251,7 +251,7 @@ fi
# the preferred link.
rm -f /lib/modules/preferred
rm -f /lib/modules/default
-if [ -x /sbin/depmod -a -n "$USEMODULES" ]; then
+if [ -x /sbin/depmod -A -n "$USEMODULES" ]; then
# If they aren't using a recent sane kernel, make a link for them
if [ ! -n "`uname -r | grep -- "-"`" ]; then
ktag="`cat /proc/version`"
@@ -264,9 +264,9 @@ if [ -x /sbin/depmod -a -n "$USEMODULES" ]; then
fi
fi
if [ -L /lib/modules/default ]; then
- INITLOG_ARGS= action "Finding module dependencies" depmod -a default
+ INITLOG_ARGS= action "Finding module dependencies" depmod -A default
else
- INITLOG_ARGS= action "Finding module dependencies" depmod -a
+ INITLOG_ARGS= action "Finding module dependencies" depmod -A
fi
fi