From b657d18d43eeae124d430e7fc418da31d5ed5049 Mon Sep 17 00:00:00 2001 From: Matthew Fisher Date: Thu, 17 Apr 2014 15:15:08 -0700 Subject: [PATCH] fix(vagrant): use start on make run the command hangs if there's nothing to restart, which is the case when booting for the first time. It makes more sense for make run to run make start, and the user should have to specify make restart in order to restart a systemd unit. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index fdba386e1e..fa8ea9f616 100644 --- a/Makefile +++ b/Makefile @@ -34,7 +34,7 @@ restart: logs: vagrant ssh -c 'journalctl -f -u deis-*' -run: install restart logs +run: install start logs clean: uninstall vagrant ssh -c 'cd share && for c in $(COMPONENTS); do docker rm -f deis-$$c; done'