git://git.openafs.org
/
openafs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
(parent:
6c5439b
)
linux-start-if-dynroot-even-if-no-network-20020731
author
Derek Atkins
<warlord@mit.edu>
Wed, 31 Jul 2002 23:41:02 +0000 (23:41 +0000)
committer
Derrick Brashear
<shadow@dementia.org>
Wed, 31 Jul 2002 23:41:02 +0000 (23:41 +0000)
if we start with dynroot, dont worry if we have net or not
src/afsd/afs.rc.linux
patch
|
blob
|
history
diff --git
a/src/afsd/afs.rc.linux
b/src/afsd/afs.rc.linux
index
be734be
..
ac2cb12
100644
(file)
--- 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