Skip to content

Commit 47a44f4

Browse files
committed
fix(Makefile): submit only *.service units for registry and controller
An earlier rebase mistake lost the *.service filter for submitting registry units, so "deis-registry-data.service.template" was being submitted unintentionally.
1 parent b5ab916 commit 47a44f4

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)