mirror of
https://git.chefkoch.net/pub/make-deploy
synced 2025-05-12 18:44:56 +00:00
feature DEPLOY_START_DELAY, adds a delay when (re)starting targets after deployment
This commit is contained in:
parent
b5d5a6f323
commit
6ab5e15f8a
1 changed files with 7 additions and 3 deletions
10
Makefile
10
Makefile
|
@ -1,3 +1,5 @@
|
|||
DEPLOY_START_DELAY = 0
|
||||
|
||||
-include secrets.mk
|
||||
include config.mk
|
||||
-include $(DEPLOY_CONFIG_OVERRIDE)
|
||||
|
@ -96,13 +98,15 @@ endif
|
|||
pull: pull-$(DEPLOY_TYPE)
|
||||
|
||||
start: start-$(DEPLOY_TYPE)
|
||||
|
||||
sleep $(DEPLOY_START_DELAY)
|
||||
|
||||
stop: stop-$(DEPLOY_TYPE)
|
||||
|
||||
|
||||
logs: logs-$(DEPLOY_TYPE)
|
||||
|
||||
restart: restart-$(DEPLOY_TYPE)
|
||||
|
||||
sleep $(DEPLOY_START_DELAY)
|
||||
|
||||
reload:
|
||||
ifneq (,$(wildcard reload.sh))
|
||||
@- echo "\n### reloading ..."
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue