Procházet zdrojové kódy

replaced tabs with spaces

Milen Pavlov před 12 roky
rodič
revize
b68da0da75
1 změnil soubory, kde provedl 5 přidání a 5 odebrání
  1. 5 5
      extra/centos/celeryd.init

+ 5 - 5
extra/centos/celeryd.init

@@ -181,14 +181,14 @@ start() {
     RETVAL=$?
 
     if [[ "$RETVAL" == "0" ]]; then
-	# Sleep a few seconds to give Celery a chance to initialize itself.
-	# This is useful to prevent scripts following this one from trying to
-	# use Celery (or its pid files) too early.
-	sleep $SLEEP_SECONDS
+        # Sleep a few seconds to give Celery a chance to initialize itself.
+        # This is useful to prevent scripts following this one from trying to
+        # use Celery (or its pid files) too early.
+        sleep $SLEEP_SECONDS
 
         # Collect the pids of all nodes into one service pid file
         # (this step will fail if no nodes have started yet)
-	cat "${CELERYD_PID_DIR}"/* > "$SERVICE_PID_FILE"
+        cat "${CELERYD_PID_DIR}"/* > "$SERVICE_PID_FILE"
     fi
 
     [[ -f "$SERVICE_PID_FILE" ]] && success || failure