From cfdbdf922726887c3bc7dd8745ba2101348ec487 Mon Sep 17 00:00:00 2001 From: Derek Atkins Date: Wed, 31 Jul 2002 23:41:54 +0000 Subject: [PATCH] STABLE12-linux-start-if-dynroot-even-if-no-network-20020731 if we start with dynroot, dont worry if we have net or not (cherry picked from commit aea332588be791dd79c467e727621be382d18a21) --- 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 fb1c58773..c93f32c27 100644 --- a/src/afsd/afs.rc.linux +++ b/src/afsd/afs.rc.linux @@ -223,7 +223,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 -- 2.39.5