feature DEPLOY_START_DELAY, adds a delay when (re)starting targets after deployment

This commit is contained in:
Andreas Neue 2023-05-08 10:46:42 +02:00
parent b5d5a6f323
commit 6ab5e15f8a
1 changed files with 7 additions and 3 deletions

View File

@ -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 ..."