Fedora 14: Shutdown problem

JB jb.1234abcd at gmail.com
Tue Feb 1 18:30:56 UTC 2011


Terry Barnaby <terry1 <at> beam.ltd.uk> writes:

> ... 
> Note I am using the "network" not "NetworkManager" service. The NetworkManager
> service does not work well for me with systems using networked /home and
> other file systems.
> ...

Looks like the reason for this is:

# ls /etc/rc0.d/*
...
S00killall
S01halt

# cat /etc/rc0.d/S00killall
...
        # Networking could be needed for NFS root.
        [ $subsys = network ] && continue
...

The NetworkManager is set in
/var/lock/subsys/NetworkManager
but it is not skipped as well, so the network is brought down.

Next, the halt script is executed that will try to unmount external fs shares
(e.g. nfs), and of course will fail.
 
The fix:
        # Networking could be needed for NFS root.
        [ $subsys = NetworkManager ] && continue

Will that make you use NetworkManager now ? :-)

JB




More information about the users mailing list