Компьютерный форум OSzone.net  

Компьютерный форум OSzone.net (http://forum.oszone.net/index.php)
-   Общий по Linux (http://forum.oszone.net/forumdisplay.php?f=9)
-   -   kudzu (http://forum.oszone.net/showthread.php?t=233076)

mitsumoto 18-04-2012 14:55 1901873

kudzu
 
всем привет!

народ помогите пожалуйста разобраться с kudzu
заранее благодарен.


# service kudzu start
Checking for hardware changes/etc/init.d/kudzu: line 23: 23229 Segmentation fault /sbin/kudzu $KUDZU_ARGS
[FAILED]
# yum install kudzu
Loaded plugins: rhnplugin, security
Setting up Install Process
Package kudzu-1.2.57.1.26-3.x86_64 already installed and latest version Nothing to do

# uname -a
Linux test.home.lan 2.6.18-308.1.1.el5 #1 SMP Fri Feb 17 16:51:01 EST 2012 x86_64 x86_64 x86_64 GNU/Linux


# cat kudzu
Код:

#!/bin/bash
#
# kudzu                This scripts runs the kudzu hardware probe.
#
# chkconfig: 345 05 95
# description:        This runs the hardware probe, and optionally configures \
#                changed hardware.

# Source function library.
. /etc/init.d/functions

KUDZU_ARGS=

# Do we want to do a safe probe?
. /etc/sysconfig/kudzu

if [ "$SAFE" != "no" ]; then
        KUDZU_ARGS="-s"
fi

RETVAL=$?

case "$1" in
 start)
        echo -n $"Checking for hardware changes"
        rm -f /var/run/Xconfig
        rm -f /var/run/Xconfig-failed

        # Have a 30 second timeout.
        /sbin/kudzu $KUDZU_ARGS
        RETVAL=$?
        if [ "$RETVAL" -eq 0 ]; then
            action "" /bin/true
        else
          action "" /bin/false
        fi

        # We don't want to run this on random runlevel changes.
        touch /var/lock/subsys/kudzu
        # However, if they did configure X and want runlevel 5, let's
        # switch to it...
        if [ -f /var/run/Xconfig ]; then
            grep -q "^id:5:initdefault:" /etc/inittab && telinit 5
            rm -f /var/run/Xconfig
        fi
        # If X configuration failed, give them a sane default.
        if [ -f /var/run/Xconfig-failed ]; then
            telinit 3
            rm -f /var/run/Xconfig-failed
        fi
        ;;
 status)
        base=kudzu
        if [ -f /var/lock/subsys/kudzu ]; then
          echo $"${base} has run"
          exit 0
        fi
        echo $"${base} is stopped"
        exit 3
        ;;
 stop)
        # Do not re-run without user intervention
        # rm -f /var/lock/subsys/kudzu
        ;;
 *)
        echo $"Usage: $0 {start|stop}"
        exit 1
        ;;
esac

exit $RETVAL



Время: 23:15.

Время: 23:15.
© OSzone.net 2001-