aboutsummaryrefslogtreecommitdiff
path: root/doc/release-notes
diff options
context:
space:
mode:
authorCarl Dong <accounts@carldong.me>2019-01-03 23:14:32 +0800
committerCarl Dong <accounts@carldong.me>2019-02-04 09:18:28 -0500
commitbad1716c6d30fdf4be6d5050a04e1211f920bbd6 (patch)
treeb00057ad553487f5d781e8a3bb001f251f153692 /doc/release-notes
parentb0c7b54d0c2e116d61e686b1adfdea6a1f7f02fe (diff)
downloadbitcoin-bad1716c6d30fdf4be6d5050a04e1211f920bbd6.tar.xz
init: Modify docs and add release note for 12255
Diffstat (limited to 'doc/release-notes')
-rw-r--r--doc/release-notes/release-notes-pr12255.md17
1 files changed, 17 insertions, 0 deletions
diff --git a/doc/release-notes/release-notes-pr12255.md b/doc/release-notes/release-notes-pr12255.md
new file mode 100644
index 0000000000..5ac8b44283
--- /dev/null
+++ b/doc/release-notes/release-notes-pr12255.md
@@ -0,0 +1,17 @@
+systemd init file
+=========
+
+The systemd init file (`contrib/init/bitcoind.service`) has been changed to use
+`/var/lib/bitcoind` as the data directory instead of `~bitcoin/.bitcoin`. This
+change makes Bitcoin Core more consistent with other services, and makes the
+systemd init config more consistent with existing Upstart and OpenRC configs.
+
+The configuration, PID, and data directories are now completely managed by
+systemd, which will take care of their creation, permissions, etc. See
+[`systemd.exec (5)`](https://www.freedesktop.org/software/systemd/man/systemd.exec.html#RuntimeDirectory=)
+for more details.
+
+When using the provided init files under `contrib/init`, overriding the
+`datadir` option in `/etc/bitcoin/bitcoin.conf` will have no effect. This is
+because the command line arguments specified in the init files take precedence
+over the options specified in `/etc/bitcoin/bitcoin.conf`.