fix missing genkey task in systemd bootnode makefile
Signed-off-by: Jakub Sokołowski <jakub@status.im>
This commit is contained in:
parent
3122c56c0e
commit
e249f35a8d
18
Makefile
18
Makefile
|
@ -299,19 +299,25 @@ update-fleet-config: ##@other Update fleets configuration from fleets.status.im
|
||||||
@echo "Done"
|
@echo "Done"
|
||||||
|
|
||||||
run-bootnode-systemd: ##@Easy way to run a bootnode locally with Docker Compose
|
run-bootnode-systemd: ##@Easy way to run a bootnode locally with Docker Compose
|
||||||
@cd _assets/systemd/bootnode/ && $(MAKE)
|
@cd _assets/systemd/bootnode && $(MAKE)
|
||||||
|
|
||||||
run-bootnode-docker: ##@Easy way to run a bootnode locally with Docker Compose
|
run-bootnode-docker: ##@Easy way to run a bootnode locally with Docker Compose
|
||||||
@cd _assets/compose/bootnode/ && $(MAKE)
|
@cd _assets/compose/bootnode && $(MAKE)
|
||||||
|
|
||||||
run-mailserver-systemd: ##@Easy Run a mailserver locally with systemd
|
run-mailserver-systemd: ##@Easy Run a mailserver locally with systemd
|
||||||
@cd _assets/systemd/mailserver/ && $(MAKE)
|
@cd _assets/systemd/mailserver && $(MAKE)
|
||||||
|
|
||||||
run-mailserver-docker: ##@Easy Run a mailserver locally with Docker Compose
|
run-mailserver-docker: ##@Easy Run a mailserver locally with Docker Compose
|
||||||
@cd _assets/compose/mailserver/ && $(MAKE)
|
@cd _assets/compose/mailserver && $(MAKE)
|
||||||
|
|
||||||
|
clean-bootnode-systemd: ##@Easy Clean your systemd service for running a bootnode
|
||||||
|
@cd _assets/systemd/bootnode && $(MAKE) clean
|
||||||
|
|
||||||
|
clean-bootnode-docker: ##@Easy Clean your Docker container running a bootnode
|
||||||
|
@cd _assets/compose/bootnode && $(MAKE) clean
|
||||||
|
|
||||||
clean-mailserver-systemd: ##@Easy Clean your systemd service for running a mailserver
|
clean-mailserver-systemd: ##@Easy Clean your systemd service for running a mailserver
|
||||||
@./_assets/systemd/clean.sh
|
@cd _assets/systemd/mailserver && $(MAKE) clean
|
||||||
|
|
||||||
clean-mailserver-docker: ##@Easy Clean your Docker container running a mailserver
|
clean-mailserver-docker: ##@Easy Clean your Docker container running a mailserver
|
||||||
@cd _assets/compose/mailserver/ && $(MAKE) clean
|
@cd _assets/compose/mailserver && $(MAKE) clean
|
||||||
|
|
|
@ -31,7 +31,7 @@ $(ENODE)
|
||||||
endef
|
endef
|
||||||
export INFO_MSG
|
export INFO_MSG
|
||||||
|
|
||||||
all: checks build save-address service enable restart info
|
all: checks build genkey save-address service enable restart info
|
||||||
|
|
||||||
clean: stop disable rm-service forget
|
clean: stop disable rm-service forget
|
||||||
|
|
||||||
|
@ -100,6 +100,7 @@ build: $(GIT_ROOT)/build/bin/bootnode
|
||||||
.PHONY: build
|
.PHONY: build
|
||||||
|
|
||||||
$(SERVICE_DIR):
|
$(SERVICE_DIR):
|
||||||
|
echo $(SERVICE_DIR)
|
||||||
@mkdir -p $(SERVICE_DIR)
|
@mkdir -p $(SERVICE_DIR)
|
||||||
|
|
||||||
service: $(SERVICE_DIR)
|
service: $(SERVICE_DIR)
|
||||||
|
|
Loading…
Reference in New Issue