diff options
author | Roy Marples <roy@marples.name> | 2009-04-27 13:58:26 +0000 |
---|---|---|
committer | Roy Marples <roy@marples.name> | 2009-04-27 13:58:26 +0000 |
commit | 48f477f851d6ac0a1867ff6b405bbdfae401b0d2 (patch) | |
tree | ca6b5b30d29787955ac78cc88c693a2d3aed4cbd /init.d | |
parent | 3d43fb6f227729bb6837ffeea3d6e2e44b6486e2 (diff) |
Fix a brain fart
Diffstat (limited to 'init.d')
-rw-r--r-- | init.d/network.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/init.d/network.in b/init.d/network.in index 50ba7578..3b2cccc9 100644 --- a/init.d/network.in +++ b/init.d/network.in @@ -241,7 +241,7 @@ stop() # Don't stop the network at shutdown. # We don't use the noshutdown keyword so that we are started again # correctly if we go back to multiuser. - ! yesno ${shutdown_network:-YES} && yesno $RC_GOINGDOWN && return 0 + yesno ${shutdown_network:-YES} && yesno $RC_GOINGDOWN && return 0 local int= intv= cmd= downcmd= r= einfo "Stopping network" |