rpcbind won't start

David Mack dmack at juniper.net
Wed Oct 17 23:27:53 UTC 2007


The current rawhide /etc/init.d/rpcbind script contains this at the
beginning of the "start" command:

start() {
        # Get config.
        if [ -f /etc/sysconfig/network ]; then
                . /etc/sysconfig/network
        else
                exit 6
        fi
        # Check that networking is up.
        [ "$NETWORKING" = "no" ] || exit 6

Note that, in /etc/sysconfig/network, NETWORKING = yes, so this exits
without starting rpcbind. Changing this to

        [ "$NETWORKING" = "yes" ] || exit 6

fixes the problem.

Dave




More information about the fedora-test-list mailing list