Post
Topic
Board Announcements (Altcoins)
Re: [ANN] ⭐ Snowgem ⭐ First Equihash ⭐ zkSNARKs ⭐ Masternode Activated
by
NameTaken
on 14/03/2018, 06:59:53 UTC
I saw that ZenCash secure node needs atleast 92% uptime to earn reward so I was wondering if something like that is also the case in the event of an outage. I think using Monit is unnecessary as all major Linux distros have adopted systemd for process and log management. This is the systemd service file I'm using:

Code:
[Unit]
Description=Snowgem daemon
After=network-online.target

[Service]
ExecReload=/bin/kill -HUP $MAINPID
ExecStart=/usr/local/bin/snowgemd
WorkingDirectory=/home/snowgem
User=snowgem
KillMode=mixed
Restart=always
RestartSec=10
TimeoutStopSec=10
Nice=-20
ProtectSystem=full

[Install]
WantedBy=multi-user.target

Code:
systemctl enable --now snowgem.service

to start on boot.