File tree Expand file tree Collapse file tree
common/etc/s6-overlay/s6-rc.d Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ #!/command/with-contenv sh
12healthcheck-queue
Original file line number Diff line number Diff line change 11#!/command/with-contenv sh
22
3- echo "QUEUE_ENABLED $QUEUE_ENABLED"
4-
5- if test "$QUEUE_ENABLED" -eq "true"; then
3+ if [ "$QUEUE_ENABLED" = "true" ]; then
4+ echo "Queue is enabled"
65 artisan queue:work \
76 --max-jobs $QUEUE_MAX_JOBS \
87 --sleep $QUEUE_SLEEP \
Original file line number Diff line number Diff line change 1+ #!/command/with-contenv sh
12healthcheck-schedule
Original file line number Diff line number Diff line change 11#!/command/with-contenv sh
22
3- echo "SCHEDULE_ENABLED $SCHEDULE_ENABLED"
4-
5- if test "$SCHEDULE_ENABLED" -eq "true"; then
3+ if [ "$SCHEDULE_ENABLED" = "true" ]; then
4+ echo "Schedule is enabled"
65 artisan schedule:work --whisper
76else
87 echo "Schedule is disabled"
You can’t perform that action at this time.
0 commit comments