diff options
| author | setpill <[email protected]> | 2019-08-06 13:05:43 +0200 |
|---|---|---|
| committer | setpill <[email protected]> | 2019-08-20 10:54:14 +0200 |
| commit | aded0528f0e1e3735ce8dd26fd9e546150b73187 (patch) | |
| tree | 19c8b18d6d216683583ab11fdba1c836f1bd24a6 | |
| parent | Merge #16530: doc: Fix grammar and punctuation in developer notes (diff) | |
| download | discoin-aded0528f0e1e3735ce8dd26fd9e546150b73187.tar.xz discoin-aded0528f0e1e3735ce8dd26fd9e546150b73187.zip | |
Improve clarity of systemd service file comments
The phrasing seemed to indicate that the options specified in
ExecStart= could not be specified in the config file, necessitating
their inclusion in the service file. However, the options in the
config file simply get overridden by any specified in ExecStart=.
| -rw-r--r-- | contrib/init/bitcoind.service | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/contrib/init/bitcoind.service b/contrib/init/bitcoind.service index cfc5f7758..79f07666f 100644 --- a/contrib/init/bitcoind.service +++ b/contrib/init/bitcoind.service @@ -5,8 +5,9 @@ # See "man systemd.service" for details. # Note that almost all daemon options could be specified in -# /etc/bitcoin/bitcoin.conf, except for those explicitly specified as arguments -# in ExecStart= +# /etc/bitcoin/bitcoin.conf, but keep in mind those explicitly +# specified as arguments in ExecStart= will override those in the +# config file. [Unit] Description=Bitcoin daemon |