https://bugzilla.novell.com/show_bug.cgi?id=640336 https://bugzilla.novell.com/show_bug.cgi?id=640336#c1 --- Comment #1 from Joschi Brauchle <joschibrauchle@gmx.de> 2010-09-18 08:35:13 UTC --- Possible patch: --- rc.dhcpd +++ rc.dhcpd @@ -95,15 +95,17 @@ # with force-reload (in case signalling is not supported) are # considered a success. -if ! [ -x "$DAEMON_BIN" ]; then - if [ "$1" = "stop" ]; then exit 0; fi - echo >&2 "$0: \"$DAEMON_BIN\" is not an executable file. Exiting." - exit 5 -fi -if ! [ -r "$DAEMON_CONF" ] ; then - if [ "$1" = "stop" ]; then exit 0; fi - echo >&2 "$0: \"$DAEMON_CONF\" config file missed. Exiting." - exit 6 +if ! [ "$1" = "status" ]; then + if ! [ -x "$DAEMON_BIN" ]; then + if [ "$1" = "stop" ]; then exit 0; fi + echo >&2 "$0: \"$DAEMON_BIN\" is not an executable file. Exiting." + exit 5 + fi + if ! [ -r "$DAEMON_CONF" ] ; then + if [ "$1" = "stop" ]; then exit 0; fi + echo >&2 "$0: \"$DAEMON_CONF\" config file missed. Exiting." + exit 6 + fi fi # remove empty pid files to avoid disturbing warnings by checkproc/killproc -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.