Przeglądaj źródła

yet another round of cosmetical changes to the init script

Helmut Pozimski 11 lat temu
rodzic
commit
4a8e6c84e7
1 zmienionych plików z 4 dodań i 4 usunięć
  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)