From: Derek Atkins Date: Wed, 31 Jul 2002 23:41:02 +0000 (+0000) Subject: linux-start-if-dynroot-even-if-no-network-20020731 X-Git-Tag: openafs-devel_1_3_3~33 X-Git-Url: http://git.openafs.org/?p=openafs.git;a=commitdiff_plain;h=aea332588be791dd79c467e727621be382d18a21 linux-start-if-dynroot-even-if-no-network-20020731 if we start with dynroot, dont worry if we have net or not --- diff --git a/src/afsd/afs.rc.linux b/src/afsd/afs.rc.linux index be734be..ac2cb12 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