Update util files
This commit is contained in:
parent
be01253f21
commit
f288fe467c
4 changed files with 24 additions and 24 deletions
7
utils/conf/danicoind.conf
Normal file
7
utils/conf/danicoind.conf
Normal file
|
@ -0,0 +1,7 @@
|
|||
# Configuration for danicoind
|
||||
# Syntax: any command line option may be specified as 'clioptionname=value'.
|
||||
# See 'danicoind --help' for all available options.
|
||||
|
||||
data-dir=/var/lib/danicoin
|
||||
log-file=/var/log/danicoin/danicoin.log
|
||||
log-level=0
|
|
@ -1,7 +0,0 @@
|
|||
# Configuration for monerod
|
||||
# Syntax: any command line option may be specified as 'clioptionname=value'.
|
||||
# See 'monerod --help' for all available options.
|
||||
|
||||
data-dir=/var/lib/monero
|
||||
log-file=/var/log/monero/monero.log
|
||||
log-level=0
|
17
utils/systemd/danicoind.service
Normal file
17
utils/systemd/danicoind.service
Normal file
|
@ -0,0 +1,17 @@
|
|||
[Unit]
|
||||
Description=Danicoin Daemon
|
||||
After=network.target
|
||||
|
||||
[Service]
|
||||
User=danicoin
|
||||
Group=danicoin
|
||||
WorkingDirectory=~
|
||||
|
||||
Type=forking
|
||||
PIDFile=/var/run/danicoind.pid
|
||||
|
||||
ExecStart=/usr/bin/danicoind --config-file /etc/danicoind.conf \
|
||||
--detach --pidfile /var/run/danicoind.pid
|
||||
|
||||
[Install]
|
||||
WantedBy=multi-user.target
|
|
@ -1,17 +0,0 @@
|
|||
[Unit]
|
||||
Description=Monero Full Node
|
||||
After=network.target
|
||||
|
||||
[Service]
|
||||
User=monero
|
||||
Group=monero
|
||||
WorkingDirectory=~
|
||||
|
||||
Type=forking
|
||||
PIDFile=/var/run/monerod.pid
|
||||
|
||||
ExecStart=/usr/bin/monerod --config-file /etc/monerod.conf \
|
||||
--detach --pidfile /var/run/monerod.pid
|
||||
|
||||
[Install]
|
||||
WantedBy=multi-user.target
|
Loading…
Reference in a new issue