From aea332588be791dd79c467e727621be382d18a21 Mon Sep 17 00:00:00 2001 From: Derek Atkins Date: Wed, 31 Jul 2002 23:41:02 +0000 Subject: [PATCH] linux-start-if-dynroot-even-if-no-network-20020731 if we start with dynroot, dont worry if we have net or not --- src/afsd/afs.rc.linux | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/afsd/afs.rc.linux b/src/afsd/afs.rc.linux index be734be945..ac2cb1216f 100644 --- a/src/afsd/afs.rc.linux +++ b/src/afsd/afs.rc.linux @@ -229,7 +229,9 @@ choose_afsdoptions() { case "$1" in start) if [ ! "$afs_rh" -o ! -f /var/lock/subsys/afs ]; then - on_network || exit 1 + if [ `echo "$OPTIONS" | grep -c dynroot` = 0 ]; then + on_network || exit 1 + fi # Load kernel extensions if load_client ; then : else