use more descriptive names for systemd services
Signed-off-by: Jakub Sokołowski <jakub@status.im>
This commit is contained in:
parent
fc841f884a
commit
d29c6aad50
|
@ -18,13 +18,13 @@ SERVICE_DIR := /etc/systemd/system/
|
|||
endif
|
||||
|
||||
# Settings
|
||||
export SERVICE_NAME ?= bootnode
|
||||
export SERVICE_NAME ?= status-go-bootnode
|
||||
export SERVICE_PATH ?= $(SERVICE_DIR)/$(SERVICE_NAME).service
|
||||
export LOG_LEVEL ?= 3
|
||||
export LISTEN_PORT ?= 30303
|
||||
export DATA_PATH ?= /var/tmp/status-go-boot
|
||||
export DATA_PATH ?= /var/tmp/$(SERVICE_NAME)
|
||||
export KEY_PATH ?= $(DATA_PATH)/nodekey
|
||||
export ADDR_PATH ?= $(DATA_PATH)/nodeaddr
|
||||
export LOG_LEVEL ?= 3
|
||||
export LISTEN_PORT ?= 30303
|
||||
# Necessary to make bootnode available publicly
|
||||
export PUBLIC_IP ?= $(shell curl -s https://ipecho.net/plain)
|
||||
|
||||
|
|
|
@ -18,12 +18,12 @@ SERVICE_DIR := /etc/systemd/system/
|
|||
endif
|
||||
|
||||
# Settings
|
||||
export SERVICE_NAME ?= statusd
|
||||
export SERVICE_NAME ?= status-go-mailserver
|
||||
export SERVICE_DIR ?= $(HOME)/.config/systemd/user/
|
||||
export SERVICE_PATH ?= $(SERVICE_DIR)/$(SERVICE_NAME).service
|
||||
export DATA_PATH ?= /var/tmp/$(SERVICE_NAME)
|
||||
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)
|
||||
|
||||
|
|
Loading…
Reference in New Issue