Skip to content

Commit 9ad39a2

Browse files
committed
Merge pull request #1459 from deis/hotfix-makefile-registry
fix(Makefile): submit only *.service units for registry and controller
2 parents b5ab916 + 47a44f4 commit 9ad39a2

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ start: check-fleet start-warning start-routers
9797

9898
@# registry
9999
$(call echo_yellow,"Waiting for deis-registry to start...")
100-
$(FLEETCTL) start -no-block registry/systemd/*
100+
$(FLEETCTL) start -no-block registry/systemd/*.service
101101
@until $(FLEETCTL) $(list-units) | egrep -q "deis-registry\..+(running|failed)"; \
102102
do sleep 2; \
103103
printf "\033[0;33mStatus:\033[0m "; $(FLEETCTL) $(list-units) | \
@@ -108,7 +108,7 @@ start: check-fleet start-warning start-routers
108108

109109
@# controller
110110
$(call echo_yellow,"Waiting for deis-controller to start...")
111-
$(FLEETCTL) start -no-block controller/systemd/*
111+
$(FLEETCTL) start -no-block controller/systemd/*.service
112112
@until $(FLEETCTL) $(list-units) | egrep -q "deis-controller\..+(running|failed)"; \
113113
do sleep 2; \
114114
printf "\033[0;33mStatus:\033[0m "; $(FLEETCTL) $(list-units) | \

0 commit comments

Comments
 (0)