4f26ffd447
* Fix project name, links, rename binary * Update util/version/Cargo.toml Co-Authored-By: David <dvdplm@gmail.com> * Update updater/Cargo.toml Co-Authored-By: David <dvdplm@gmail.com> * Update util/version/Cargo.toml Co-Authored-By: David <dvdplm@gmail.com> Co-authored-by: David <dvdplm@gmail.com>
23 lines
630 B
Desktop File
23 lines
630 B
Desktop File
[Unit]
|
|
Description=OpenEthereum
|
|
After=network.target
|
|
|
|
[Service]
|
|
# run as root, set base_path in config.toml
|
|
ExecStart=/usr/bin/openethereum --config /etc/parity/config.toml
|
|
# To run as user, comment out above and uncomment below, fill in user and group
|
|
# picks up users default config.toml in $HOME/.local/share/io.parity.ethereum/
|
|
# User=username
|
|
# Group=groupname
|
|
# ExecStart=/usr/bin/openethereum
|
|
Restart=on-failure
|
|
|
|
# Specifies which signal to use when killing a service. Defaults to SIGTERM.
|
|
# SIGHUP gives openethereum time to exit cleanly before SIGKILL (default 90s)
|
|
KillSignal=SIGHUP
|
|
|
|
[Install]
|
|
WantedBy=default.target
|
|
|
|
|