Skip to content

Commit

Permalink
Update makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
alkhachatryan authored Oct 15, 2024
1 parent 4effdf4 commit 852276e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions makefile
Original file line number Diff line number Diff line change
Expand Up @@ -36,14 +36,14 @@ serve_all_backdoors:
@echo "Starting the server on all containers..."
@for container in $(CONTAINERS); do \
echo "Starting server on $$container..."; \
docker exec -d $$container /opt/sys/kernel/molehole/server; \
docker exec -d $$container /tmp/dist/server; \
done
@echo "Servers started on all containers."

stop_all_backdoors:
@echo "Stopping servers on all containers..."
@for container in $(CONTAINERS); do \
echo "Stopping server on $$container..."; \
docker exec $$container pkill -f /opt/sys/kernel/molehole/server; \
docker exec $$container pkill -f /tmp/dist/server; \
done
@echo "Servers stopped on all containers."
@echo "Servers stopped on all containers."

0 comments on commit 852276e

Please sign in to comment.