2019-11-28 22:52:38 +00:00
|
|
|
export GIT_ROOT = $(shell git rev-parse --show-toplevel)
|
|
|
|
|
|
|
|
RED := $(shell tput -Txterm setaf 1)
|
|
|
|
GRN := $(shell tput -Txterm setaf 2)
|
|
|
|
YLW := $(shell tput -Txterm setaf 3)
|
|
|
|
RST := $(shell tput -Txterm sgr0)
|
|
|
|
BLD := $(shell tput bold)
|
|
|
|
|
|
|
|
# Settings
|
|
|
|
export SERVICE_NAME ?= statusd
|
|
|
|
export SERVICE_DIR ?= $(HOME)/.config/systemd/user/
|
|
|
|
export SERVICE_PATH ?= $(SERVICE_DIR)/$(SERVICE_NAME).service
|
|
|
|
export LOG_LEVEL ?= INFO
|
|
|
|
export LISTEN_PORT ?= 30303
|
|
|
|
export DATA_PATH ?= /var/tmp/status-go-mail
|
|
|
|
# Necessary to make mailserver available publicly
|
|
|
|
export PUBLIC_IP ?= $(shell curl -s https://ipecho.net/plain)
|
|
|
|
|
|
|
|
# Info
|
|
|
|
STATUS = $(shell systemctl --user is-active $(SERVICE_NAME))
|
|
|
|
|
|
|
|
define INFO_MSG
|
|
|
|
* $(GRN)Your mailserver is listening on:$(RST) $(BLD)$(PUBLIC_IP):$(LISTEN_PORT)$(RST)
|
|
|
|
* $(YLW)Make sure that IP and TCP port are available from the internet!$(RST)
|
|
|
|
$(GRN)Your enode address is:$(RST)
|
|
|
|
$(shell $(GIT_ROOT)/_assets/scripts/get_enode.sh 2>/dev/null)
|
|
|
|
endef
|
|
|
|
export INFO_MSG
|
|
|
|
|
|
|
|
all: checks build config service enable restart info
|
|
|
|
|
|
|
|
clean: stop disable rm-service forget
|
|
|
|
|
|
|
|
checks:
|
2019-12-20 13:09:39 +00:00
|
|
|
ifeq (, $(shell which jq))
|
|
|
|
$(error $(RED)No 'jq' in your $$PATH. please install it$(RST))
|
|
|
|
endif
|
2019-11-28 22:52:38 +00:00
|
|
|
# this setup wont work without an os with systemd
|
|
|
|
ifeq (, $(shell which systemctl))
|
|
|
|
$(error $(RED)Your system does not have systemd$(RST))
|
|
|
|
endif
|
|
|
|
# if the service is already up just show some info
|
|
|
|
ifeq (active, $(STATUS))
|
|
|
|
$(info $(INFO_MSG))
|
|
|
|
$(error $(YLW)Service already started$(RST))
|
|
|
|
endif
|
|
|
|
|
|
|
|
info:
|
|
|
|
@echo "$$INFO_MSG"
|
|
|
|
|
|
|
|
enode:
|
|
|
|
@$(GIT_ROOT)/_assets/scripts/get_enode.sh
|
|
|
|
|
|
|
|
status:
|
|
|
|
systemctl --user status --no-pager $(SERVICE_NAME)
|
|
|
|
|
|
|
|
logs:
|
|
|
|
journalctl --user-unit statusd
|
|
|
|
|
|
|
|
enable:
|
|
|
|
@echo "* $(BLD)Enabling '$(SERVICE_NAME)' service...$(RST)"
|
|
|
|
systemctl --user enable $(SERVICE_NAME)
|
|
|
|
|
|
|
|
disable:
|
|
|
|
@echo "* $(BLD)Disabling '$(SERVICE_NAME)' service...$(RST)"
|
|
|
|
systemctl --user disable "${SERVICE_NAME}"
|
|
|
|
|
|
|
|
start:
|
|
|
|
@echo "* $(BLD)Starting '$(SERVICE_NAME)' service...$(RST)"
|
|
|
|
systemctl --user start $(SERVICE_NAME)
|
|
|
|
|
|
|
|
restart:
|
|
|
|
@echo "* $(BLD)Restarting '$(SERVICE_NAME)' service...$(RST)"
|
|
|
|
systemctl --user restart $(SERVICE_NAME)
|
|
|
|
|
|
|
|
stop:
|
|
|
|
@echo "* $(BLD)Stopping '$(SERVICE_NAME)' service...$(RST)"
|
|
|
|
systemctl --user stop "${SERVICE_NAME}"
|
|
|
|
|
|
|
|
forget:
|
|
|
|
@echo "* $(BLD)Stopping '$(SERVICE_NAME)' service...$(RST)"
|
|
|
|
systemctl --user daemon-reload
|
|
|
|
systemctl --user reset-failed
|
|
|
|
|
|
|
|
$(GIT_ROOT)/build/bin/statusd:
|
|
|
|
@echo "* $(BLD)Building mailserver binary...$(RST)"
|
|
|
|
@cd "$(GIT_ROOT)" && make statusgo
|
|
|
|
|
|
|
|
build: $(GIT_ROOT)/build/bin/statusd
|
|
|
|
.PHONY: build
|
|
|
|
|
|
|
|
$(SERVICE_DIR):
|
|
|
|
@mkdir -p $(SERVICE_DIR)
|
|
|
|
|
|
|
|
service: $(SERVICE_DIR)
|
|
|
|
@echo "* $(BLD)Generating '$(SERVICE_NAME)' service...$(RST)"
|
|
|
|
@envsubst < ./service.template > $(SERVICE_PATH)
|
|
|
|
|
|
|
|
rm-service:
|
|
|
|
rm -f $(SERVICE_PATH)
|
|
|
|
|
|
|
|
config:
|
|
|
|
@echo "* $(BLD)Generating '$(SERVICE_NAME)' config...$(RST)"
|
|
|
|
@$(GIT_ROOT)/_assets/scripts/gen_config.sh
|