aboutsummaryrefslogtreecommitdiff
path: root/utils/systemd
diff options
context:
space:
mode:
Diffstat (limited to 'utils/systemd')
-rw-r--r--utils/systemd/monerod.service (renamed from utils/systemd/bitmonerod.service)10
1 files changed, 5 insertions, 5 deletions
diff --git a/utils/systemd/bitmonerod.service b/utils/systemd/monerod.service
index da012c4e3..182878ebb 100644
--- a/utils/systemd/bitmonerod.service
+++ b/utils/systemd/monerod.service
@@ -1,16 +1,16 @@
[Unit]
-Description=Monero cryptocurrency node
+Description=Monero Full Node
After=network.target
[Service]
-User=bitmonero
-Group=bitmonero
+User=monero
+Group=monero
WorkingDirectory=~
Type=forking
-ExecStart=/usr/bin/bitmonerod --config-file /etc/bitmonerod.conf --detach
+ExecStart=/usr/bin/monerod --config-file /etc/monerod.conf --detach
-# This is necessary because bitmonerod does not yet support
+# This is necessary because monerod does not yet support
# writing a PID file, which means systemd tries to guess the PID
# by default, but it guesses wrong (sometimes, depending on
# random timing of events), because the daemon forks twice.