瀏覽代碼

yet another round of cosmetical changes to the init script

Helmut Pozimski 11 年之前
父節點
當前提交
4a8e6c84e7
共有 1 個文件被更改,包括 4 次插入4 次删除
  1. 4 4
      initscript/stdd

+ 4 - 4
initscript/stdd

@@ -78,16 +78,16 @@ case "$1" in
 	log_daemon_msg "Starting $DESC" "$NAME"
 	do_start
 	case "$?" in
-		0|1) [ "$VERBOSE" != no ] && log_end_msg 0 ;;
-		2) [ "$VERBOSE" != no ] && log_end_msg 1 ;;
+		0|1) log_end_msg 0 ;;
+		2) log_end_msg 1 ;;
 	esac
 	;;
   stop)
 	log_daemon_msg "Stopping $DESC" "$NAME"
 	do_stop
 	case "$?" in
-		0|1) [ "$VERBOSE" != no ] && log_end_msg 0 ;;
-		2) [ "$VERBOSE" != no ] && log_end_msg 1 ;;
+		0|1) log_end_msg 0 ;;
+		2) log_end_msg 1 ;;
 	esac
 	;;
   status)